]> git.eshelyaron.com Git - emacs.git/commitdiff
(bibtex-format-entry, bibtex-clean-entry):
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 May 2006 21:50:47 +0000 (21:50 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 22 May 2006 21:50:47 +0000 (21:50 +0000)
Signal more user-friendly error messages.

lisp/ChangeLog
lisp/textmodes/bibtex.el

index a763c61124a82973c718e88dc95e05a34502b32c..8249b0d777342c1f37b1f73f4591c3270144b925 100644 (file)
@@ -1,5 +1,8 @@
 2006-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
+       Signal more user-friendly error messages.
+
        * complete.el (PC-do-completion): Undo the addition of implicit
        wildcards if they did not lead to finding any match.
        (read-file-name-internal): Don't add the final > if the completion is
index 044c59d0cae19295e944241f2b5fe843819778c0..74ec8beffa2badcd76563cb16b145b5e930e73b8 100644 (file)
@@ -1803,7 +1803,8 @@ Formats current entry according to variable `bibtex-entry-format'."
 
         ;; identify entry type
         (goto-char (point-min))
-        (re-search-forward bibtex-entry-type)
+        (or (re-search-forward bibtex-entry-type nil t)
+            (error "Not inside a BibTeX entry"))
         (let ((beg-type (1+ (match-beginning 0)))
               (end-type (match-end 0)))
           (setq entry-list (assoc-string (buffer-substring-no-properties
@@ -3879,7 +3880,8 @@ At end of the cleaning process, the functions in
   (interactive "P")
   (let ((case-fold-search t)
         (start (bibtex-beginning-of-entry))
-        (_ (looking-at bibtex-any-entry-maybe-empty-head))
+        (_ (or (looking-at bibtex-any-entry-maybe-empty-head)
+              (error "Not inside a BibTeX entry")))
         (entry-type (bibtex-type-in-head))
         (key (bibtex-key-in-head)))
     ;; formatting