Skip to content

Commit

Permalink
window(window-make): Minor refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadcg committed Dec 6, 2023
1 parent 86c5372 commit b378c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/window.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ The handlers take the window as argument."))
(export-always 'window-make)
(defun window-make (browser)
"Create a new window in BROWSER."
(let* ((window (ffi-window-make browser)))
(let ((window (ffi-window-make browser)))
(setf (gethash (id window) (windows browser)) window)
(unless (slot-value browser 'last-active-window)
(setf (slot-value browser 'last-active-window) window))
Expand Down

0 comments on commit b378c1f

Please sign in to comment.