* modes.texi (Defining Minor Modes): Use C-delete in examples (bug#6334).
This commit is contained in:
@@ -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))))
|
||||
|
||||
Reference in New Issue
Block a user