aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/iswitchb.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el
index 7ac80b5642a..ddd14e0188d 100644
--- a/lisp/iswitchb.el
+++ b/lisp/iswitchb.el
@@ -1162,11 +1162,11 @@ Copied from `icomplete-tidy'."
1162(defun iswitchb-entryfn-p () 1162(defun iswitchb-entryfn-p ()
1163 "Return non-nil if `this-command' shows we are using `iswitchb-buffer'." 1163 "Return non-nil if `this-command' shows we are using `iswitchb-buffer'."
1164 (and (symbolp this-command) ; ignore lambda functions 1164 (and (symbolp this-command) ; ignore lambda functions
1165 (member (symbol-name this-command) 1165 (memq this-command
1166 '("iswitchb-buffer" 1166 '(iswitchb-buffer
1167 "iswitchb-buffer-other-frame" 1167 iswitchb-buffer-other-frame
1168 "iswitchb-display-buffer" 1168 iswitchb-display-buffer
1169 "iswitchb-buffer-other-window")))) 1169 iswitchb-buffer-other-window))))
1170 1170
1171(defun iswitchb-summaries-to-end () 1171(defun iswitchb-summaries-to-end ()
1172 "Move the summaries to the end of the list. 1172 "Move the summaries to the end of the list.