diff options
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/cua-base.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 008a3c3ba49..551408cb34b 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el | |||
| @@ -1083,9 +1083,9 @@ If ARG is the atom `-', scroll upward by nearly full screen." | |||
| 1083 | (memq 'shift (event-modifiers | 1083 | (memq 'shift (event-modifiers |
| 1084 | (aref (this-single-command-keys) 0))) | 1084 | (aref (this-single-command-keys) 0))) |
| 1085 | ;; See if raw escape sequence maps to a shifted event, e.g. S-up or C-S-home. | 1085 | ;; See if raw escape sequence maps to a shifted event, e.g. S-up or C-S-home. |
| 1086 | (and (boundp 'function-key-map) | 1086 | (and (boundp 'local-function-key-map) |
| 1087 | function-key-map | 1087 | (terminal-local-value 'local-function-key-map nil) |
| 1088 | (let ((ev (lookup-key function-key-map | 1088 | (let ((ev (lookup-key (terminal-local-value 'local-function-key-map nil) |
| 1089 | (this-single-command-raw-keys)))) | 1089 | (this-single-command-raw-keys)))) |
| 1090 | (and (vector ev) | 1090 | (and (vector ev) |
| 1091 | (symbolp (setq ev (aref ev 0))) | 1091 | (symbolp (setq ev (aref ev 0))) |