diff options
author | Case Duckworth | 2021-04-21 09:38:08 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-21 09:38:08 -0500 |
commit | 9dd7619d12109cbe963379d03aba76c01fe9304a (patch) | |
tree | c0801f1ee67eeffd94b353cd28f9d6c2154a0c6a /lisp | |
parent | Fix boundp check in eshell-setup (diff) | |
download | emacs-9dd7619d12109cbe963379d03aba76c01fe9304a.tar.gz emacs-9dd7619d12109cbe963379d03aba76c01fe9304a.zip |
Fix typo
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/acdw.el b/lisp/acdw.el index 650cb3f..483bf60 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el | |||
@@ -141,7 +141,7 @@ Prompt only if there are unsaved changes." | |||
141 | (4 (other-window 1) | 141 | (4 (other-window 1) |
142 | (kill-current-buffer) | 142 | (kill-current-buffer) |
143 | (unless (one-window-p) (delete-window))) | 143 | (unless (one-window-p) (delete-window))) |
144 | (16 (mapc 'kill-buffer (delq (current-) (buffer-list))) | 144 | (16 (mapc 'kill-buffer (delq (current-buffer) (buffer-list))) |
145 | (delete-other-windows)))) | 145 | (delete-other-windows)))) |
146 | 146 | ||
147 | 147 | ||