summaryrefslogtreecommitdiff
path: root/doc/emacs/programs.texi
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-11-30 00:14:51 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2021-11-30 00:14:51 +0100
commit804c69dafd686b386630b125182e66551dd592f4 (patch)
tree588f9dc1b05f06a02ba01d0056acaa857c2e51e5 /doc/emacs/programs.texi
parent1bd7b5dd5165d8ac70870b1c69701183befa868a (diff)
downloademacs-804c69dafd686b386630b125182e66551dd592f4.tar.gz
emacs-804c69dafd686b386630b125182e66551dd592f4.tar.bz2
emacs-804c69dafd686b386630b125182e66551dd592f4.zip
Audit the Emacs manual for keymap-*-related changes
* doc/emacs/programs.texi (Other C Commands): * doc/emacs/msdos-xtra.texi (MS-DOS Keyboard): * doc/emacs/custom.texi (Init Examples): * doc/emacs/abbrevs.texi (Editing Abbrevs): Change some examples to use keymap-* functions.
Diffstat (limited to 'doc/emacs/programs.texi')
-rw-r--r--doc/emacs/programs.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi
index 0056906e1f7..85ed65a4954 100644
--- a/doc/emacs/programs.texi
+++ b/doc/emacs/programs.texi
@@ -1827,7 +1827,7 @@ sure the keymap is loaded before we try to change it.
@example
(defun my-bind-clb ()
- (define-key c-mode-base-map "\C-m"
+ (keymap-set c-mode-base-map "RET"
'c-context-line-break))
(add-hook 'c-initialization-hook 'my-bind-clb)
@end example