aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/completion.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/completion.el b/lisp/completion.el
index b097788d737..ae4c0a36257 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -1867,7 +1867,9 @@ Prefix args ::
1867 ;; Don't accept completions 1867 ;; Don't accept completions
1868 (setq completion-to-accept nil) 1868 (setq completion-to-accept nil)
1869 ;; print message 1869 ;; print message
1870 (if (and print-status-p (cmpl19-sit-for 0)) 1870 ;; This used to call cmpl19-sit-for, an undefined function.
1871 ;; I hope that sit-for does the right thing; I don't know -- rms.
1872 (if (and print-status-p (sit-for 0))
1871 (message "No %scompletions." 1873 (message "No %scompletions."
1872 (if (eq this-command last-command) "more " ""))) 1874 (if (eq this-command last-command) "more " "")))
1873 ;; statistics 1875 ;; statistics