summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>2008-02-20 17:45:52 +0000
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>2008-02-20 17:45:52 +0000
commit48c4d6a236e412f7855cf8114bc6874f998fb0a9 (patch)
tree0156912a610b0bf1c9048edc255c3f33de7f0af0
parent62754d298ae2bf6fdfabcea11c389f80bac7bd1a (diff)
downloademacs-48c4d6a236e412f7855cf8114bc6874f998fb0a9.tar.gz
(bibtex-convert-alien): Do not use optional args in calls of sit-for.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/bibtex.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 839e5f48461..916bff5e73c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-20 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
+
+ * textmodes/bibtex.el (bibtex-convert-alien): Do not use optional
+ args in calls of sit-for.
+
2008-02-20 Juanma Barranquero <lekktu@gmail.com>
* vc-svn.el (vc-svn-program): Fix typo in docstring.
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index b724c5c0e90..02139bd37d9 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.")))