Skip to content

Commit

Permalink
Revert on dash
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Nov 20, 2024
1 parent aba9098 commit 157b2f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion company-box-doc.el
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ just grab the first candidate and press forward."

(defun company-box-doc--delete-frame ()
"Delete the child frame if it exists."
(-when-let* (frame (frame-local-getq company-box-doc-frame))
(-when-let (frame (frame-local-getq company-box-doc-frame))
(and (frame-live-p frame)
(delete-frame frame))
(frame-local-setq company-box-doc-frame nil)))
Expand Down
2 changes: 1 addition & 1 deletion company-box.el
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ COMMAND: See `company-frontends'."

(defun company-box--delete-frame ()
"Delete the child frame if it exists."
(-when-let* (frame (company-box--get-frame))
(-when-let (frame (company-box--get-frame))
(and (frame-live-p frame)
(delete-frame frame))
(company-box--set-frame nil)))
Expand Down

0 comments on commit 157b2f8

Please sign in to comment.