summaryrefslogtreecommitdiff
path: root/lisp/textmodes/texnfo-upd.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-02-09 00:38:12 +0000
committerRichard M. Stallman <rms@gnu.org>1999-02-09 00:38:12 +0000
commit7ecedca68ddef682aeee2104ba4cb8faf021a26a (patch)
treecef11a7da84911e3a41701f743040cf05139c4f9 /lisp/textmodes/texnfo-upd.el
parente2918bbf0fb56d6e9846eec19eb855d582ecbd8c (diff)
downloademacs-7ecedca68ddef682aeee2104ba4cb8faf021a26a.tar.gz
(texinfo-all-menus-update, texinfo-master-menu): Remove calls to sleep-for.
Diffstat (limited to 'lisp/textmodes/texnfo-upd.el')
-rw-r--r--lisp/textmodes/texnfo-upd.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el
index 8dba3fe1173..3ebf3fea4f7 100644
--- a/lisp/textmodes/texnfo-upd.el
+++ b/lisp/textmodes/texnfo-upd.el
@@ -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))