* modes.texi (Defining Minor Modes): Use C-delete in examples (bug#6334).
This commit is contained in:
parent
c48763bb79
commit
4ce5a4ccd4
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
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.
|
||||
|
|
|
@ -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))))
|
||||
|
|
Loading…
Add table
Reference in a new issue