Skip to content

Commit

Permalink
describe(describe-key-dispatch): Fix UI/UX issue.
Browse files Browse the repository at this point in the history
Closes #2997.
  • Loading branch information
aadcg committed Jun 25, 2024
1 parent 4692524 commit 3e8d0b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/describe.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,8 @@ A command is a special kind of function that can be called with
:command (typecase command
(symbol command)
(command (name command))))
(setf (command-dispatcher *browser*) #'dispatch-command)))
(setf (command-dispatcher *browser*) #'dispatch-command)
(echo-dismiss)))

(define-command describe-key ()
"Display binding of user-inputted keys."
Expand Down

0 comments on commit 3e8d0b6

Please sign in to comment.