]> git.eshelyaron.com Git - emacs.git/commitdiff
(bibtex-convert-alien): Fix sit-for ags.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 23 Feb 2008 20:28:58 +0000 (20:28 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 23 Feb 2008 20:28:58 +0000 (20:28 +0000)
lisp/textmodes/bibtex.el

index 1d79e0d8005383a01ff99815bc6668d077b32f54..17b03dba850361787deb10378eb83f193631b97c 100644 (file)
@@ -4176,14 +4176,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 t)
   (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 t)
     (bibtex-reformat read-options)
     (goto-char (point-max))
     (message "Buffer is now parsable. Please save it.")))