Remove forgotten ‘or’ from pip-frame-add-buffer

This commit is contained in:
Milan Zamazal 2022-05-16 07:12:31 +02:00
parent a3722fbb12
commit 5c89fb4fd6
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ custom option but it can be overriden here."
If there is no PIP frame then create one.
A buffer can be added and displayed multiple times in the frame."
(interactive)
(let ((frame (or (pip-frame--get-frame t))))
(let ((frame (pip-frame--get-frame t)))
(if frame
(pip-frame--add-additional-buffer)
(pip-frame--make-frame))))