* modes.texi (Defining Minor Modes): Use C-delete in examples (bug#6334).

This commit is contained in:
Juanma Barranquero 2010-07-27 03:37:23 +02:00
parent c48763bb79
commit 4ce5a4ccd4
2 changed files with 8 additions and 3 deletions

View file

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

View file

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