]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-all-menus-update, texinfo-master-menu): Remove calls to sleep-for.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Feb 1999 00:38:12 +0000 (00:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Feb 1999 00:38:12 +0000 (00:38 +0000)
lisp/textmodes/texnfo-upd.el

index 8dba3fe1173460d17c2844b37357ec82cfde26d8..3ebf3fea4f73b90d1b793f97c4c442e8b07f5f3b 100644 (file)
@@ -268,17 +268,14 @@ nodes in the buffer before updating the menus."
       (if update-all-nodes-p
          (progn
            (message "Updating all nodes in %s ... " (buffer-name))
-           (sleep-for 2)
            (texinfo-update-node (point-min) (point-max))))
 
       (message "Updating all menus in %s ... " (buffer-name))
-      (sleep-for 2)
       (texinfo-make-menu (point-max) (point-min))
 
       (if master-menu-p
          (progn
            (message "Updating the master menu in %s... " (buffer-name))
-           (sleep-for 2)
            (texinfo-master-menu nil))))
 
     (message "Done...updated all the menus.  You may save the buffer.")))
@@ -819,15 +816,12 @@ title of the section containing the menu."
        (progn
          (message "Making a master menu in %s ...first updating all nodes... "
                   (buffer-name))
-         (sleep-for 2)
          (texinfo-update-node (point-min) (point-max))
 
          (message "Updating all menus in %s ... " (buffer-name))
-         (sleep-for 2)
          (texinfo-make-menu (point-min) (point-max))))
 
     (message "Now making the master menu in %s... " (buffer-name))
-    (sleep-for 2)
     (goto-char (point-min))
     (texinfo-insert-master-menu-list
      (texinfo-master-menu-list))