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
4ce5a4cc
Commit
4ce5a4cc
authored
Jul 27, 2010
by
Juanma Barranquero
Browse files
* modes.texi (Defining Minor Modes): Use C-delete in examples (bug#6334).
parent
c48763bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
doc/lispref/ChangeLog
doc/lispref/ChangeLog
+5
-0
doc/lispref/modes.texi
doc/lispref/modes.texi
+3
-3
No files found.
doc/lispref/ChangeLog
View file @
4ce5a4cc
2010-07-27 Juanma Barranquero <lekktu@gmail.com>
* modes.texi (Defining Minor Modes): Use C-delete in examples,
instead of "\C-\^?" (bug#6334).
2010-07-21 Juanma Barranquero <lekktu@gmail.com>
* text.texi (Special Properties): Fix typo.
...
...
doc/lispref/modes.texi
View file @
4ce5a4cc
...
...
@@ -1494,7 +1494,7 @@ See the command \\[hungry-electric-delete]."
;; The indicator for the mode line.
" Hungry"
;; The minor mode bindings.
'((
"\C-\^?"
. hungry-electric-delete))
'((
[C-delete]
. hungry-electric-delete))
:group 'hunger)
@end smallexample
...
...
@@ -1526,8 +1526,8 @@ See the command \\[hungry-electric-delete]."
:lighter " Hungry"
;; The minor mode bindings.
:keymap
'((
"\C-\^?"
. hungry-electric-delete)
(
"\
C-
\
M-
\^?"
'((
[C-delete]
. hungry-electric-delete)
(
[
C-M-
delete]
. (lambda ()
(interactive)
(hungry-electric-delete t))))
...
...
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