aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRichard M. Stallman2002-02-14 01:55:43 +0000
committerRichard M. Stallman2002-02-14 01:55:43 +0000
commit8df9f2a38746e4163c40722dc3bee73c486a599d (patch)
treec7191cac0ee743a0d81ceb69ac01b26dd639e04d /lisp/textmodes
parent9147ae66a8cf9fcb22bbe1fcbc85564817fe5c5e (diff)
downloademacs-8df9f2a38746e4163c40722dc3bee73c486a599d.tar.gz
emacs-8df9f2a38746e4163c40722dc3bee73c486a599d.zip
(bibtex-parse-buffers-stealthily):
Tell bibtex-parse-keys to output no progress messages.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index a7c68a72040..66264a60faf 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -2398,7 +2398,9 @@ The generation algorithm works as follows:
2398 (not 2398 (not
2399 (eq (buffer-modified-tick) 2399 (eq (buffer-modified-tick)
2400 bibtex-buffer-last-parsed-tick))) 2400 bibtex-buffer-last-parsed-tick)))
2401 (if (bibtex-parse-keys nil t t) 2401 ;; Output no progress messages in bibtex-parse-keys
2402 ;; because when in y-or-n-p that can hide the question.
2403 (if (bibtex-parse-keys nil nil t)
2402 ;; successful operation --> remove buffer from list 2404 ;; successful operation --> remove buffer from list
2403 (setq buffers (cdr buffers))) 2405 (setq buffers (cdr buffers)))
2404 ;; buffer is no BibTeX buffer or needs no parsing 2406 ;; buffer is no BibTeX buffer or needs no parsing