aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-01-31 00:02:47 +0000
committerKarl Heuer <[email protected]>1995-01-31 00:02:47 +0000
commit9d9f56ddbf734bdb3fc94ecae72711fc163a296d (patch)
treed0a1c047b978ee67495bc9cb57d92f68030520c1
parent3ce3ff115195322ca9c3f638c8dab30e7b95f89a (diff)
(syms_of_keyboard): Fix missing backslashes.
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 7039437a76..99044239e1 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6404,10 +6404,10 @@ Type this character while in a menu prompt to rotate around the lines of it.");
"A mask of additional modifier keys to use with every keyboard character.\n\
Emacs applies the modifiers of the character stored here to each keyboard\n\
character it reads. For example, after evaluating the expression\n\
- (setq extra-keyboard-modifiers ?\C-x)\n\
+ (setq extra-keyboard-modifiers ?\\C-x)\n\
all input characters will have the control modifier applied to them.\n\
\n\
-Note that the character ?\C-@, equivalent to the integer zero, does\n\
+Note that the character ?\\C-@, equivalent to the integer zero, does\n\
not count as a control character; rather, it counts as a character\n\
with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
cancels any modification.");