]> git.eshelyaron.com Git - emacs.git/commitdiff
Audit the Emacs manual for keymap-*-related changes
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 29 Nov 2021 23:14:51 +0000 (00:14 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 29 Nov 2021 23:14:51 +0000 (00:14 +0100)
* 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.

doc/emacs/abbrevs.texi
doc/emacs/custom.texi
doc/emacs/msdos-xtra.texi
doc/emacs/programs.texi

index c83da8aaec6d300cc1ab2455112b6e5386bc1354..972416ff1cdbd68c8d6da3ed1ea67c59978e2b50 100644 (file)
@@ -274,7 +274,7 @@ Edit a list of abbrevs; you can add, alter or remove definitions.
 @example
 @var{various other tables@dots{}}
 (lisp-mode-abbrev-table)
-"dk"          0    "define-key"
+"ks"          0    "keymap-set"
 (global-abbrev-table)
 "dfn"         0    "definition"
 @end example
index 917f6f49214193c6f523606615009410dfbeef39..310a8563aefe8614acf66f74ea023c16450c0483 100644 (file)
@@ -2567,10 +2567,9 @@ Do the same thing for Lisp mode only.
 Redefine all keys which now run @code{next-line} in Fundamental mode
 so that they run @code{forward-line} instead.
 
-@findex substitute-key-definition
+@findex keymap-substitute
 @example
-(substitute-key-definition 'next-line 'forward-line
-                           global-map)
+(keymap-substitute global-map 'next-line 'forward-line)
 @end example
 
 @item
index fce6ae46f8180d7aff1f7c2e71aa34c3a6b67ba8..114700f08d3d534235b1ce453c2c19ae3e7b97f5 100644 (file)
@@ -105,7 +105,7 @@ following line into your @file{_emacs} file:
 
 @smallexample
 ;; @r{Make the @key{ENTER} key from the numeric keypad act as @kbd{C-j}.}
-(define-key function-key-map [kp-enter] [?\C-j])
+(keymap-set function-key-map "<kp-enter>" "C-j")
 @end smallexample
 
 @node MS-DOS Mouse
index 0056906e1f715e57a44cae5fe4be65e9645a0b21..85ed65a49544d3cbea41cb3a7d57c8a2e694185d 100644 (file)
@@ -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