emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113490: lisp/emacs-lisp/package.el (package-menu-mo


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r113490: lisp/emacs-lisp/package.el (package-menu-mode): Fix bug#14930.
Date: Mon, 22 Jul 2013 11:39:39 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113490
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/14930
author: Ari Roponen <address@hidden>
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2013-07-22 13:39:32 +0200
message:
  lisp/emacs-lisp/package.el (package-menu-mode): Fix bug#14930.
  Don't modify the global value of tabulated-list-revert-hook.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/package.el     package.el-20100617020707-ybavz666awsxwin6-2
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-22 01:25:47 +0000
+++ b/lisp/ChangeLog    2013-07-22 11:39:32 +0000
@@ -1,3 +1,8 @@
+2013-07-22  Ari Roponen  <address@hidden>  (tiny change)
+
+       * emacs-lisp/package.el (package-menu-mode): Don't modify the
+       global value of tabulated-list-revert-hook (bug#14930).
+
 2013-07-22  Juanma Barranquero  <address@hidden>
 
        * desktop.el: Require 'cl-lib.

=== modified file 'lisp/emacs-lisp/package.el'
--- a/lisp/emacs-lisp/package.el        2013-06-26 00:44:35 +0000
+++ b/lisp/emacs-lisp/package.el        2013-07-22 11:39:32 +0000
@@ -1393,7 +1393,7 @@
                               ("Description" 0 nil)])
   (setq tabulated-list-padding 2)
   (setq tabulated-list-sort-key (cons "Status" nil))
-  (add-hook 'tabulated-list-revert-hook 'package-menu--refresh)
+  (add-hook 'tabulated-list-revert-hook 'package-menu--refresh nil t)
   (tabulated-list-init-header))
 
 (defmacro package--push (pkg-desc status listname)


reply via email to

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