aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc/efaq.texi
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-07-23 19:15:10 +0200
committerLars Ingebrigtsen2019-07-23 19:15:20 +0200
commit9a83ecb60a0dd280fe892adfe3bbefd2d55d13bd (patch)
tree7bad8dc5ecab3f2ec54edb909449fed8819a687b /doc/misc/efaq.texi
parent8dd5b6ea56c38669bc98104ee2d6b31496624d28 (diff)
downloademacs-9a83ecb60a0dd280fe892adfe3bbefd2d55d13bd.tar.gz
emacs-9a83ecb60a0dd280fe892adfe3bbefd2d55d13bd.zip
Refer to local-function-key-map in various manuals
* doc/misc/viper.texi (Key Bindings): * doc/misc/efaq.texi (X key translations for Emacs) (No Escape key): * doc/misc/edt.texi (Changes): * doc/emacs/msdos-xtra.texi (MS-DOS Keyboard): * doc/emacs/custom.texi (Terminal Init): Refer to local-function-key-map instead of function-key-map, since the latter isn't supposed to be changed (bug#27490).
Diffstat (limited to 'doc/misc/efaq.texi')
-rw-r--r--doc/misc/efaq.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index 485776e1c73..fcc8e9f11ed 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -3887,10 +3887,10 @@ if you do build Emacs with Xt; please let us know if you've done this!)
3887The only way to affect the behavior of keys within Emacs is through 3887The only way to affect the behavior of keys within Emacs is through
3888@code{xmodmap} (outside Emacs) or @code{define-key} (inside Emacs). The 3888@code{xmodmap} (outside Emacs) or @code{define-key} (inside Emacs). The
3889@code{define-key} command should be used in conjunction with the 3889@code{define-key} command should be used in conjunction with the
3890@code{function-key-map} map. For instance, 3890@code{local-function-key-map} map. For instance,
3891 3891
3892@lisp 3892@lisp
3893(define-key function-key-map [M-@key{TAB}] [?\M-\t]) 3893(define-key local-function-key-map [M-@key{TAB}] [?\M-\t])
3894@end lisp 3894@end lisp
3895 3895
3896@noindent 3896@noindent
@@ -4099,7 +4099,7 @@ generates @key{ESC}. If not, the following form can be used to bind it:
4099 4099
4100@lisp 4100@lisp
4101;; F11 is the documented ESC replacement on DEC terminals. 4101;; F11 is the documented ESC replacement on DEC terminals.
4102(define-key function-key-map [f11] [?\e]) 4102(define-key local-function-key-map [f11] [?\e])
4103@end lisp 4103@end lisp
4104 4104
4105@node Compose Character 4105@node Compose Character