emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115588: * cus-theme.el (custom-new-theme-mode-map):


From: Chong Yidong
Subject: [Emacs-diffs] trunk r115588: * cus-theme.el (custom-new-theme-mode-map): Add bindings.
Date: Wed, 18 Dec 2013 07:54:32 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115588
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15674
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2013-12-18 15:54:20 +0800
message:
  * cus-theme.el (custom-new-theme-mode-map): Add bindings.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/cus-theme.el              
custheme.el-20091113204419-o5vbwnq5f7feedwu-2513
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-12-18 05:10:58 +0000
+++ b/lisp/ChangeLog    2013-12-18 07:54:20 +0000
@@ -1,5 +1,8 @@
 2013-12-18  Chong Yidong  <address@hidden>
 
+       * cus-theme.el (custom-new-theme-mode-map): Add bindings
+       (Bug#15674).
+
        * replace.el (occur-engine): Avoid infloop (Bug#7593).
 
 2013-12-18  Kazuhiro Ito  <address@hidden>  (tiny change)

=== modified file 'lisp/cus-theme.el'
--- a/lisp/cus-theme.el 2013-04-13 01:10:09 +0000
+++ b/lisp/cus-theme.el 2013-12-18 07:54:20 +0000
@@ -32,9 +32,11 @@
 
 (defvar custom-new-theme-mode-map
   (let ((map (make-keymap)))
-    (set-keymap-parent map widget-keymap)
+    (set-keymap-parent map (make-composed-keymap widget-keymap
+                                                special-mode-map))
     (suppress-keymap map)
     (define-key map "\C-x\C-s" 'custom-theme-write)
+    (define-key map "q" 'Custom-buffer-done)
     (define-key map "n" 'widget-forward)
     (define-key map "p" 'widget-backward)
     map)


reply via email to

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