We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1760e61 + 7323f8a commit dec035fCopy full SHA for dec035f
resize-window.el
@@ -192,7 +192,8 @@ to enlarge right."
192
(while reading-characters
193
(let* ((char (resize-window--match-alias (read-key)))
194
(choice (assoc char resize-window-dispatch-alist))
195
- (capital (assoc (+ char 32) resize-window-dispatch-alist)))
+ (capital (when (numberp char)
196
+ (assoc (+ char 32) resize-window-dispatch-alist))))
197
(cond
198
(choice (resize-window--execute-action choice))
199
((and capital (resize-window--allows-capitals capital))
0 commit comments