Mercurial > emacs
changeset 91992:d490a1f4c1b9
(bibtex-convert-alien): Do not use optional args in calls of sit-for.
author | Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> |
---|---|
date | Wed, 20 Feb 2008 17:43:51 +0000 |
parents | f40c311f15ac |
children | ba9a6703fde0 |
files | lisp/textmodes/bibtex.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/bibtex.el Wed Feb 20 15:21:55 2008 +0000 +++ b/lisp/textmodes/bibtex.el Wed Feb 20 17:43:51 2008 +0000 @@ -4416,14 +4416,14 @@ entries from minibuffer." (interactive "*P") (message "Starting to validate buffer...") - (sit-for 1 nil t) + (sit-for 1) (bibtex-realign) (deactivate-mark) ; So `bibtex-validate' works on the whole buffer. (if (not (let (bibtex-maintain-sorted-entries) (bibtex-validate))) (message "Correct errors and call `bibtex-convert-alien' again") (message "Starting to reformat entries...") - (sit-for 2 nil t) + (sit-for 2) (bibtex-reformat read-options) (goto-char (point-max)) (message "Buffer is now parsable. Please save it.")))