]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/minibuffer.el (completions-header-format): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 27 May 2023 17:20:33 +0000 (20:20 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 27 May 2023 17:20:33 +0000 (20:20 +0300)
lisp/minibuffer.el

index 747c9443afae7ec989f360019616c0d29ad514d7..298f3f8728da6228ab8dcefa46a98fbe1ae7790e 100644 (file)
@@ -2025,11 +2025,14 @@ completions."
 
 (defcustom completions-header-format
   (propertize "%s possible completions:\n" 'face 'shadow)
-  "Format of completions header.
-It may contain one %s to show the total count of completions.
-When nil, no header is shown."
-  :type '(choice (const :tag "No header" nil)
-                 (string :tag "Header format string"))
+  "If non-nil, the format string for completions heading line.
+The heading line is inserted before the completions, and is intended
+to summarize the completions.
+The format string may include one %s, which will be replaced with
+the total count of possible completions.
+If this is nil, no heading line will be shown."
+  :type '(choice (const :tag "No heading line" nil)
+                 (string :tag "Format string for heading line"))
   :version "29.1")
 
 (defun completion--insert-strings (strings &optional group-fun)