changeset 10599:d0e0bb2ebebb

Remove tabs in .txi files causing problems with pdf formatting.
author Rik <octave@nomad.inbox5.com>
date Sun, 02 May 2010 21:19:55 -0700
parents 6e1674216b99
children 036bdc2d0af0
files doc/ChangeLog doc/interpreter/contrib.txi doc/interpreter/install.txi doc/interpreter/octave.texi doc/interpreter/plot.txi doc/interpreter/sparse.txi
diffstat 6 files changed, 15 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Sun May 02 10:20:36 2010 -0400
+++ b/doc/ChangeLog	Sun May 02 21:19:55 2010 -0700
@@ -1,3 +1,10 @@
+2010-05-02  Rik <octave@nomad.inbox5.com>
+
+        * interpreter/contrib.txi, interpreter/install.txi, 
+        interpreter/plot.txi, interpreter/sparse.txi,
+        interpreter/octave.texi: Remove tabs causing problems with
+        pdf formatting.
+
 2010-04-14  Shai Ayal  <shaiay@users.sourceforge.net>
 
 	* interpreter/plot.txi: Document keypress and mouse callback
--- a/doc/interpreter/contrib.txi	Sun May 02 10:20:36 2010 -0400
+++ b/doc/interpreter/contrib.txi	Sun May 02 21:19:55 2010 -0700
@@ -28,7 +28,7 @@
 * General Guidelines::
 * Octave Sources (m-files)::
 * C++ Sources::
-* Other Sources::	
+* Other Sources::
 @end menu
 
 @node How to Contribute
@@ -229,7 +229,7 @@
 @group
 static bool
 matches_patterns (const string_vector& patterns, int pat_idx,
-		  int num_pat, const std::string& name)
+                  int num_pat, const std::string& name)
 @end group
 @end example
 
--- a/doc/interpreter/install.txi	Sun May 02 10:20:36 2010 -0400
+++ b/doc/interpreter/install.txi	Sun May 02 21:19:55 2010 -0700
@@ -400,7 +400,7 @@
 @example
 @group
 zgemm.f:
-	zgemm:
+        zgemm:
 warning: unexpected parent of complex expression subtree
 zgemm.f, line 245: warning: unexpected parent of complex
   expression subtree
--- a/doc/interpreter/octave.texi	Sun May 02 10:20:36 2010 -0400
+++ b/doc/interpreter/octave.texi	Sun May 02 21:19:55 2010 -0700
@@ -42,7 +42,8 @@
 @ifinfo
 @format
 START-INFO-DIR-ENTRY
-* Octave: (octave).	Interactive language for numerical computations.
+* Octave: (octave).           Interactive language for numerical computations.
+
 END-INFO-DIR-ENTRY
 @end format
 @end ifinfo
@@ -781,7 +782,7 @@
 * General Guidelines::
 * Octave Sources (m-files)::
 * C++ Sources::
-* Other Sources::	
+* Other Sources::
 
 Trouble
 
--- a/doc/interpreter/plot.txi	Sun May 02 10:20:36 2010 -0400
+++ b/doc/interpreter/plot.txi	Sun May 02 21:19:55 2010 -0700
@@ -1087,7 +1087,7 @@
          currentfigure = [](0x0)
          children = [](0x0)
          visible = on
-			@dots{}
+         @dots{}
        @}
 @end group
 @end example
--- a/doc/interpreter/sparse.txi	Sun May 02 10:20:36 2010 -0400
+++ b/doc/interpreter/sparse.txi	Sun May 02 21:19:55 2010 -0700
@@ -108,7 +108,7 @@
   for (j = 0; j < nc; j++)
     for (i = cidx (j); i < cidx(j+1); i++)
        printf ("non-zero element (%i,%i) is %d\n", 
-	   ridx(i), j, data(i));
+           ridx(i), j, data(i));
 @end group
 @end example