aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRoland Winkler <[email protected]>2008-02-20 17:45:52 +0000
committerRoland Winkler <[email protected]>2008-02-20 17:45:52 +0000
commit48c4d6a236e412f7855cf8114bc6874f998fb0a9 (patch)
tree0156912a610b0bf1c9048edc255c3f33de7f0af0 /lisp/textmodes
parent62754d298ae2bf6fdfabcea11c389f80bac7bd1a (diff)
(bibtex-convert-alien): Do not use optional args in calls of sit-for.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index b724c5c0e9..02139bd37d 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -4416,14 +4416,14 @@ With prefix argument READ-OPTIONS non-nil, read options for reformatting
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.")))