diff options
-rw-r--r-- | lisp/km-bib.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/km-bib.el b/lisp/km-bib.el index 5eb7bdd..55c6cd5 100644 --- a/lisp/km-bib.el +++ b/lisp/km-bib.el @@ -148,11 +148,11 @@ to (when (boundp 'km/bibtex-journal-substitutions) (save-excursion (bibtex-beginning-of-entry) - (let* ((bounds (bibtex-search-forward-field "journal" t)) - (beg (1+ (bibtex-start-of-text-in-field bounds))) - (end (1- (bibtex-end-of-text-in-field bounds)))) + (let ((bounds (bibtex-search-forward-field "journal" t))) (when bounds - (let* ((journ (replace-regexp-in-string + (let* ((beg (1+ (bibtex-start-of-text-in-field bounds))) + (end (1- (bibtex-end-of-text-in-field bounds))) + (journ (replace-regexp-in-string "[ \n]+" " " (buffer-substring-no-properties beg end))) (sub (assoc-string journ km/bibtex-journal-substitutions))) |