diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/window.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el index a11293d372a..7d8ee48635a 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -4636,7 +4636,7 @@ omitted in calls from `switch-to-next-buffer'." (catch 'found (dolist (regexp switch-to-prev-buffer-skip-regexp) (when (string-match-p regexp (buffer-name buffer)) - (throw 'tag t))))))))) + (throw 'found t))))))))) (defun switch-to-prev-buffer (&optional window bury-or-kill) "In WINDOW switch to previous buffer. |