diff options
Diffstat (limited to 'emacs/.emacs.d/wpc/window.el')
-rw-r--r-- | emacs/.emacs.d/wpc/window.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/window.el b/emacs/.emacs.d/wpc/window.el index 707641c6ff73..c0a4d5765694 100644 --- a/emacs/.emacs.d/wpc/window.el +++ b/emacs/.emacs.d/wpc/window.el @@ -25,7 +25,7 @@ (defun window-find (name) "Find a window by the NAME of the buffer it's hosting." (let ((buffer (get-buffer name))) - (if (maybe/some? buffer) + (if (maybe-some? buffer) (get-buffer-window buffer) nil))) |