diff options
| author | ShengHuo ZHU | 2002-03-06 21:57:10 +0000 |
|---|---|---|
| committer | ShengHuo ZHU | 2002-03-06 21:57:10 +0000 |
| commit | 3e549b18cfc2d4b5d68f192718aa57d7935dc20e (patch) | |
| tree | cbf5fb2a9f476c9df56d1c62230e44c77cdf3535 | |
| parent | a730e8506bc3c0e670f197da28c8ba63827c25c3 (diff) | |
| download | emacs-3e549b18cfc2d4b5d68f192718aa57d7935dc20e.tar.gz emacs-3e549b18cfc2d4b5d68f192718aa57d7935dc20e.zip | |
* textmodes/bibtex.el (bibtex-make-field): Call bibtex-find-text
with SILENT so that a new field can be added.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/bibtex.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c01a5ac0425..f0c8623684c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-03-06 ShengHuo ZHU <zsh@cs.rochester.edu> | ||
| 2 | |||
| 3 | * textmodes/bibtex.el (bibtex-make-field): Call bibtex-find-text | ||
| 4 | with SILENT so that a new field can be added. | ||
| 5 | |||
| 1 | 2002-03-06 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2002-03-06 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * files.el (make-auto-save-file-name): Make sure the produced file | 8 | * files.el (make-auto-save-file-name): Make sure the produced file |
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 8012d643683..043a84f679a 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -2981,7 +2981,7 @@ using the minibuffer." | |||
| 2981 | (car e-t)))) | 2981 | (car e-t)))) |
| 2982 | (if (or (interactive-p) called-by-yank) | 2982 | (if (or (interactive-p) called-by-yank) |
| 2983 | (let (bibtex-help-message) | 2983 | (let (bibtex-help-message) |
| 2984 | (bibtex-find-text nil t) | 2984 | (bibtex-find-text nil t t) |
| 2985 | (if (looking-at "[}\"]") | 2985 | (if (looking-at "[}\"]") |
| 2986 | (forward-char)))) | 2986 | (forward-char)))) |
| 2987 | (insert ",\n") | 2987 | (insert ",\n") |