]> code.delx.au - gnu-emacs/commitdiff
(bibtex-convert-alien): Do not use optional args in calls of sit-for.
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Wed, 20 Feb 2008 17:45:52 +0000 (17:45 +0000)
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Wed, 20 Feb 2008 17:45:52 +0000 (17:45 +0000)
lisp/ChangeLog
lisp/textmodes/bibtex.el

index 839e5f4846111387b280a3207d3ae8a5baff87c0..916bff5e73c60bea0179446a836470f0ddea685a 100644 (file)
@@ -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.
index b724c5c0e90beda10f4e1c55a327d22a30fe0fa8..02139bd37d9424cf3a4c07ad7491599cbba5310f 100644 (file)
@@ -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.")))