]> git.eshelyaron.com Git - emacs.git/commitdiff
* cus-edit.el (custom-group-menu-create): Avoid deactivating the
authorChong Yidong <cyd@stupidchicken.com>
Sun, 3 Sep 2006 14:13:37 +0000 (14:13 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 3 Sep 2006 14:13:37 +0000 (14:13 +0000)
mark after running the menu filter.

lisp/ChangeLog
lisp/cus-edit.el

index cd606e8f4daedd6b465290bc2d29a39a41b87ed6..8712304b3632b48aedb1c97cda1e337a5b867f99 100644 (file)
@@ -1,3 +1,8 @@
+2006-09-03  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-edit.el (custom-group-menu-create): Avoid deactivating the
+       mark after running the menu filter.
+
 2006-09-03  Juri Linkov  <juri@jurta.org>
 
        * international/quail.el (quail-defrule-internal): Add a check
index e3c92d59b00d32c42022d641b0500de4212f8b3c..c31e319f798c1311c16c908ad1d6a389675d26e5 100644 (file)
@@ -4395,7 +4395,8 @@ This function does not save the buffer."
   "Ignoring WIDGET, create a menu entry for customization group SYMBOL."
   `( ,(custom-unlispify-menu-entry symbol t)
      :filter (lambda (&rest junk)
-              (let ((menu (custom-menu-create ',symbol)))
+              (let* ((deactivate-mark nil)
+                     (menu (custom-menu-create ',symbol)))
                 (if (consp menu) (cdr menu) menu)))))
 
 ;;;###autoload