Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8f942537
Commit
8f942537
authored
Dec 18, 2013
by
Chong Yidong
Browse files
* cus-theme.el (custom-new-theme-mode-map): Add bindings.
Fixes: debbugs:15674
parent
fb891cc8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/cus-theme.el
lisp/cus-theme.el
+3
-1
No files found.
lisp/ChangeLog
View file @
8f942537
2013-12-18 Chong Yidong <cyd@gnu.org>
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).
* replace.el (occur-engine): Avoid infloop (Bug#7593).
2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
...
...
lisp/cus-theme.el
View file @
8f942537
...
@@ -32,9 +32,11 @@
...
@@ -32,9 +32,11 @@
(
defvar
custom-new-theme-mode-map
(
defvar
custom-new-theme-mode-map
(
let
((
map
(
make-keymap
)))
(
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
)
(
suppress-keymap
map
)
(
define-key
map
"\C-x\C-s"
'custom-theme-write
)
(
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
"n"
'widget-forward
)
(
define-key
map
"p"
'widget-backward
)
(
define-key
map
"p"
'widget-backward
)
map
)
map
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment