Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2014-04-20 10:15:01 +02:00
commit 55bde39d88
1 changed files with 3 additions and 3 deletions

View File

@ -386,9 +386,9 @@ and `org-exclude-tags-from-inheritence'."
(bibtex-beginning-of-entry)
(if (re-search-forward "keywords.*=.*{\\(.*\\)}" nil t)
(progn (goto-char (match-end 1)) (insert ", "))
(progn (re-search-forward ",\\(\n\\)" nil t)
(insert " keywords={},\n"))
(re-search-backward "}," nil t))
(search-forward ",\n" nil t)
(insert " keywords={},\n")
(search-backward "}," nil t))
(insert (mapconcat #'identity tags ", ")))
(buffer-string))))))