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
b92aaee0
Commit
b92aaee0
authored
Oct 31, 2000
by
Stefan Monnier
Browse files
(custom-mode-map): Switch back to a sparse keymap.
parent
a28afc5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/cus-edit.el
lisp/cus-edit.el
+3
-1
No files found.
lisp/cus-edit.el
View file @
b92aaee0
...
...
@@ -3661,7 +3661,9 @@ The format is suitable for use with `easy-menu-define'."
"Keymap for `custom-mode'."
)
(
unless
custom-mode-map
(
setq
custom-mode-map
(
make-keymap
))
;; This keymap should be dense, but a dense keymap would prevent inheriting
;; "\r" bindings from the parent map.
(
setq
custom-mode-map
(
make-sparse-keymap
))
(
set-keymap-parent
custom-mode-map
widget-keymap
)
(
suppress-keymap
custom-mode-map
)
(
define-key
custom-mode-map
" "
'scroll-up
)
...
...
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