From 4ad6c7ef42583fa202244f889049463697e7fbf8 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 15 May 2016 20:28:01 -0400 Subject: bibtex-sub-journal: Fix nil error --- lisp/km-bib.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lisp/km-bib.el') 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))) -- cgit v1.2.3