diff scripts/general/nextpow2.m @ 9167:1231b1762a9a

Simplify TeXinfo and eliminate use of @iftex in arith.txi
author Rik <rdrider0-list@yahoo.com>
date Fri, 01 May 2009 11:37:36 -0700
parents c1fff751b5a8
children be55736a0783
line wrap: on
line diff
--- a/scripts/general/nextpow2.m	Fri May 01 14:00:54 2009 -0400
+++ b/scripts/general/nextpow2.m	Fri May 01 11:37:36 2009 -0700
@@ -20,13 +20,11 @@
 ## -*- texinfo -*-
 ## @deftypefn {Function File} {} nextpow2 (@var{x})
 ## If @var{x} is a scalar, return the first integer @var{n} such that
-## @iftex
 ## @tex
-##  $2^n \ge |x|$.
+## $2^n \ge |x|$.
 ## @end tex
-## @end iftex
 ## @ifnottex
-##  2^n >= abs (x).
+## 2^n >= abs (x).
 ## @end ifnottex
 ##
 ## If @var{x} is a vector, return @code{nextpow2 (length (@var{x}))}.