diff lisp/packages/texnfo-upd.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents b82b59fe008d
children
line wrap: on
line diff
--- a/lisp/packages/texnfo-upd.el	Mon Aug 13 09:00:04 2007 +0200
+++ b/lisp/packages/texnfo-upd.el	Mon Aug 13 09:02:59 2007 +0200
@@ -1268,7 +1268,7 @@
       (save-restriction
 	(narrow-to-region beginning end)
 	(goto-char beginning)
-        (push-mark (point) t t)
+        (push-mark (point) t)
 	(while (re-search-forward "^@node" (point-max) t)
           (beginning-of-line)            
           (texinfo-update-the-node))
@@ -1279,14 +1279,13 @@
   "Update every node in a Texinfo file."
   (interactive)
   (save-excursion
-    (let ((zmacs-regions nil))
-      (push-mark (point-max) t t)
-      (goto-char (point-min))
-      ;; Using the mark to pass bounds this way
-      ;; is kludgy, but it's not worth fixing. -- rms.
-      (let ((mark-active t))
-	(texinfo-update-node t))
-      (message "Done...updated every node.       You may save the buffer."))))
+    (push-mark (point-max) t)
+    (goto-char (point-min))
+    ;; Using the mark to pass bounds this way
+    ;; is kludgy, but it's not worth fixing. -- rms.
+    (let ((mark-active t))
+      (texinfo-update-node t))
+    (message "Done...updated every node.       You may save the buffer.")))
 
 (defun texinfo-update-the-node ()
   "Update one node.  Point must be at the beginning of node line.