diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-11-26 07:17:21 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-11-26 07:17:21 +0100 |
commit | 62d7ddb57c3db8f1e5cb20c6d82566b644faaa8c (patch) | |
tree | ed6046e02ffbc9cd025933229255b90bcc2e9dd6 /lisp | |
parent | 09c28ca073e3d4fb68fb7685d6e6ce6dd521fd0e (diff) | |
parent | cfaf681d3d292ceccc89c0eaaa47827665115dc6 (diff) | |
download | emacs-62d7ddb57c3db8f1e5cb20c6d82566b644faaa8c.tar.gz emacs-62d7ddb57c3db8f1e5cb20c6d82566b644faaa8c.tar.bz2 emacs-62d7ddb57c3db8f1e5cb20c6d82566b644faaa8c.zip |
Merge from origin/emacs-28
cfaf681d3d ; * src/emacs.c (main): Add commentary about command-line ...
4d16a2f737 Fix pdf generation with Texinfo 6.7
a22c9a34bd Fix 'posn-at-point' near some overlays
d1aa552d11 ; * CONTRIBUTE: No cleanups on release branches, even in d...
588caf0b27 * lisp/repeat.el (repeat-post-hook): Add check symbolp rep...
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/repeat.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/repeat.el b/lisp/repeat.el index 4dcd353e346..32ffb1884f3 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el @@ -416,7 +416,7 @@ See `describe-repeat-maps' for a list of all repeatable commands." (and (symbolp real-this-command) (get real-this-command 'repeat-map))))) (when rep-map - (when (boundp rep-map) + (when (and (symbolp rep-map) (boundp rep-map)) (setq rep-map (symbol-value rep-map))) (let ((map (copy-keymap rep-map))) |