diff options
| author | Richard M. Stallman | 2002-02-14 01:55:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-02-14 01:55:43 +0000 |
| commit | 8df9f2a38746e4163c40722dc3bee73c486a599d (patch) | |
| tree | c7191cac0ee743a0d81ceb69ac01b26dd639e04d | |
| parent | 9147ae66a8cf9fcb22bbe1fcbc85564817fe5c5e (diff) | |
| download | emacs-8df9f2a38746e4163c40722dc3bee73c486a599d.tar.gz emacs-8df9f2a38746e4163c40722dc3bee73c486a599d.zip | |
(bibtex-parse-buffers-stealthily):
Tell bibtex-parse-keys to output no progress messages.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/textmodes/bibtex.el | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56fc5bcf6c6..d78c26b5546 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,14 @@ | |||
| 5 | 5 | ||
| 6 | 2002-02-13 Richard M. Stallman <rms@gnu.org> | 6 | 2002-02-13 Richard M. Stallman <rms@gnu.org> |
| 7 | 7 | ||
| 8 | * textmodes/bibtex.el (bibtex-parse-buffers-stealthily): | ||
| 9 | Tell bibtex-parse-keys to output no progress messages. | ||
| 10 | |||
| 11 | * international/mule-diag.el (list-input-methods): | ||
| 12 | Use help-input-method, not describe-input-method, for button type. | ||
| 13 | |||
| 14 | * register.el (describe-register-1): Access register contents here. | ||
| 15 | |||
| 8 | * textmodes/text-mode.el (text-mode-hook-identify): Restore | 16 | * textmodes/text-mode.el (text-mode-hook-identify): Restore |
| 9 | previous definition. Add to text-mode-hook again. | 17 | previous definition. Add to text-mode-hook again. |
| 10 | 18 | ||
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 |