1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

* cus-theme.el (custom-new-theme-mode-map): Add bindings.

Fixes: debbugs:15674
This commit is contained in:
Chong Yidong 2013-12-18 15:54:20 +08:00
parent fb891cc818
commit 8f942537eb
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2013-12-18 Chong Yidong <cyd@gnu.org>
* 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 <kzhr@d1.dion.ne.jp> (tiny change)

View file

@ -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)