# HG changeset patch # User Roland Winkler # Date 1203529431 0 # Node ID d490a1f4c1b903d753c7ea289082c66ba5fbd1bc # Parent f40c311f15ac58ac8a2a3d3497176fa88eb35333 (bibtex-convert-alien): Do not use optional args in calls of sit-for. diff -r f40c311f15ac -r d490a1f4c1b9 lisp/textmodes/bibtex.el --- 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.")))