diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/keymaps.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/syntax.texi | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index cc2e11e0b6d..38e89c6cfdd 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi | |||
| @@ -1660,7 +1660,7 @@ to turn the character that follows into a Hyper character: | |||
| 1660 | (defun hyperify (prompt) | 1660 | (defun hyperify (prompt) |
| 1661 | (let ((e (read-event))) | 1661 | (let ((e (read-event))) |
| 1662 | (vector (if (numberp e) | 1662 | (vector (if (numberp e) |
| 1663 | (logior (lsh 1 24) e) | 1663 | (logior (ash 1 24) e) |
| 1664 | (if (memq 'hyper (event-modifiers e)) | 1664 | (if (memq 'hyper (event-modifiers e)) |
| 1665 | e | 1665 | e |
| 1666 | (add-event-modifier "H-" e)))))) | 1666 | (add-event-modifier "H-" e)))))) |
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index 71c97fdae8c..dcfade3f67d 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -1014,13 +1014,13 @@ corresponds to each syntax flag. | |||
| 1014 | @item | 1014 | @item |
| 1015 | @i{Prefix} @tab @i{Flag} @tab @i{Prefix} @tab @i{Flag} | 1015 | @i{Prefix} @tab @i{Flag} @tab @i{Prefix} @tab @i{Flag} |
| 1016 | @item | 1016 | @item |
| 1017 | @samp{1} @tab @code{(lsh 1 16)} @tab @samp{p} @tab @code{(lsh 1 20)} | 1017 | @samp{1} @tab @code{(ash 1 16)} @tab @samp{p} @tab @code{(ash 1 20)} |
| 1018 | @item | 1018 | @item |
| 1019 | @samp{2} @tab @code{(lsh 1 17)} @tab @samp{b} @tab @code{(lsh 1 21)} | 1019 | @samp{2} @tab @code{(ash 1 17)} @tab @samp{b} @tab @code{(ash 1 21)} |
| 1020 | @item | 1020 | @item |
| 1021 | @samp{3} @tab @code{(lsh 1 18)} @tab @samp{n} @tab @code{(lsh 1 22)} | 1021 | @samp{3} @tab @code{(ash 1 18)} @tab @samp{n} @tab @code{(ash 1 22)} |
| 1022 | @item | 1022 | @item |
| 1023 | @samp{4} @tab @code{(lsh 1 19)} @tab @samp{c} @tab @code{(lsh 1 23)} | 1023 | @samp{4} @tab @code{(ash 1 19)} @tab @samp{c} @tab @code{(ash 1 23)} |
| 1024 | @end multitable | 1024 | @end multitable |
| 1025 | 1025 | ||
| 1026 | @defun string-to-syntax desc | 1026 | @defun string-to-syntax desc |