]> git.eshelyaron.com Git - emacs.git/commitdiff
bibtex-mark-entry: Display no message.
authorRoland Winkler <winkler@gnu.org>
Wed, 30 May 2018 15:23:22 +0000 (10:23 -0500)
committerRoland Winkler <winkler@gnu.org>
Wed, 30 May 2018 15:23:22 +0000 (10:23 -0500)
* textmodes/bibtex.el (bibtex-mark-entry): Display no message.

lisp/textmodes/bibtex.el

index 65d0675d0e3abcda3515d01cf90e60a550f5c2f8..dc19c3c0b98f2e0dc30caf747a319eef0b146655 100644 (file)
@@ -3873,9 +3873,10 @@ Otherwise display the beginning of entry."
         (goto-char pnt)))))
 
 (defun bibtex-mark-entry ()
-  "Put mark at beginning, point at end of current BibTeX entry."
+  "Put mark at beginning, point at end of current BibTeX entry.
+Activate mark in Transient Mark mode."
   (interactive)
-  (push-mark (bibtex-beginning-of-entry) :activate t)
+  (push-mark (bibtex-beginning-of-entry) t t)
   (bibtex-end-of-entry))
 
 (defun bibtex-count-entries (&optional count-string-entries)