Skip to content

Commit

Permalink
describe(describe-key-dispatch): Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadcg committed Jun 25, 2024
1 parent 3e8d0b6 commit 1508fb1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions source/describe.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -638,11 +638,9 @@ A command is a special kind of function that can be called with
(buffer-load-internal-page-focus 'describe-bindings :buffer-id (id buffer)))

(defun describe-key-dispatch (command)
(unwind-protect
(describe-command
:command (typecase command
(symbol command)
(command (name command))))
(unwind-protect (describe-command :command (typecase command
(symbol command)
(command (name command))))
(setf (command-dispatcher *browser*) #'dispatch-command)
(echo-dismiss)))

Expand Down

0 comments on commit 1508fb1

Please sign in to comment.