Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
48c4d6a2
Commit
48c4d6a2
authored
Feb 20, 2008
by
Roland Winkler
Browse files
(bibtex-convert-alien): Do not use optional args in calls of sit-for.
parent
62754d29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/textmodes/bibtex.el
lisp/textmodes/bibtex.el
+2
-2
No files found.
lisp/ChangeLog
View file @
48c4d6a2
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.
...
...
lisp/textmodes/bibtex.el
View file @
48c4d6a2
...
...
@@ -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.")))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment