emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110719: * imenu.el (imenu): Inhibit


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110719: * imenu.el (imenu): Inhibit push-mark message.
Date: Mon, 29 Oct 2012 17:58:49 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110719
fixes bug: http://debbugs.gnu.org/12726
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2012-10-29 17:58:49 +0800
message:
  * imenu.el (imenu): Inhibit push-mark message.
modified:
  lisp/ChangeLog
  lisp/imenu.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-29 09:55:57 +0000
+++ b/lisp/ChangeLog    2012-10-29 09:58:49 +0000
@@ -1,5 +1,7 @@
 2012-10-29  Chong Yidong  <address@hidden>
 
+       * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
+
        * face-remap.el (face-remap-add-relative): Handle the case where a
        face-remapping-alist entry is a cons cell (Bug#12762).
 

=== modified file 'lisp/imenu.el'
--- a/lisp/imenu.el     2012-09-25 04:13:02 +0000
+++ b/lisp/imenu.el     2012-10-29 09:58:49 +0000
@@ -1018,7 +1018,7 @@
   (if (stringp index-item)
       (setq index-item (assoc index-item (imenu--make-index-alist))))
   (when index-item
-    (push-mark)
+    (push-mark nil t)
     (let* ((is-special-item (listp (cdr index-item)))
           (function
            (if is-special-item


reply via email to

[Prev in Thread] Current Thread [Next in Thread]