diff options
| author | Karl Heuer | 1995-01-31 00:02:47 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-31 00:02:47 +0000 |
| commit | 9d9f56ddbf734bdb3fc94ecae72711fc163a296d (patch) | |
| tree | d0a1c047b978ee67495bc9cb57d92f68030520c1 /src | |
| parent | 3ce3ff115195322ca9c3f638c8dab30e7b95f89a (diff) | |
| download | emacs-9d9f56ddbf734bdb3fc94ecae72711fc163a296d.tar.gz emacs-9d9f56ddbf734bdb3fc94ecae72711fc163a296d.zip | |
(syms_of_keyboard): Fix missing backslashes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 7039437a76f..99044239e1d 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."); | |||
| 6404 | "A mask of additional modifier keys to use with every keyboard character.\n\ | 6404 | "A mask of additional modifier keys to use with every keyboard character.\n\ |
| 6405 | Emacs applies the modifiers of the character stored here to each keyboard\n\ | 6405 | Emacs applies the modifiers of the character stored here to each keyboard\n\ |
| 6406 | character it reads. For example, after evaluating the expression\n\ | 6406 | character it reads. For example, after evaluating the expression\n\ |
| 6407 | (setq extra-keyboard-modifiers ?\C-x)\n\ | 6407 | (setq extra-keyboard-modifiers ?\\C-x)\n\ |
| 6408 | all input characters will have the control modifier applied to them.\n\ | 6408 | all input characters will have the control modifier applied to them.\n\ |
| 6409 | \n\ | 6409 | \n\ |
| 6410 | Note that the character ?\C-@, equivalent to the integer zero, does\n\ | 6410 | Note that the character ?\\C-@, equivalent to the integer zero, does\n\ |
| 6411 | not count as a control character; rather, it counts as a character\n\ | 6411 | not count as a control character; rather, it counts as a character\n\ |
| 6412 | with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\ | 6412 | with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\ |
| 6413 | cancels any modification."); | 6413 | cancels any modification."); |