The  table remove row/column  items are  off by  one; they  remove the
row/column that is above/left of the current position.  Patch attached
(extracted from the output of "cvs diff", applies with "patch -p0").

Regards, 

Jeremy Henty 
diff -u -r1.12 table-menu.scm
--- TeXmacs/progs/table/table-menu.scm  19 May 2006 14:32:14 -0000      1.12
+++ TeXmacs/progs/table/table-menu.scm  14 Mar 2008 15:12:41 -0000
@@ -223,8 +223,8 @@
       ("Blank row" (interactive table-insert-blank-row))
       ("Blank column" (interactive table-insert-blank-column)))
   (-> "Remove"
-      ("This row" (table-remove-row #f))
-      ("This column" (table-remove-column #f)))
+      ("This row" (table-remove-row #t))
+      ("This column" (table-remove-column #t)))
   ---
   (-> "Width" (link table-width-menu))
   (-> "Height" (link table-height-menu))
_______________________________________________
Texmacs-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/texmacs-dev

Reply via email to