aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2021-08-19 15:29:49 +0300
committerEli Zaretskii2021-08-19 15:29:49 +0300
commit787fa7a8ab3ccf12c0e7e4efafd7506999071ea5 (patch)
tree31ef1cf373f28ef9705d79e47c73a252a500b58d
parent8e93a37b7732e90a2b102b7246cc2cd69d840208 (diff)
downloademacs-787fa7a8ab3ccf12c0e7e4efafd7506999071ea5.tar.gz
emacs-787fa7a8ab3ccf12c0e7e4efafd7506999071ea5.zip
Minor doc fixes in icomplete.el
* lisp/icomplete.el (icomplete-section): Add :version. (icomplete--augment): Doc fix.
-rw-r--r--lisp/icomplete.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index ee34d85514b..84073933894 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -112,7 +112,8 @@ Otherwise this should be a list of the completion tables (e.g.,
112 :version "28.1") 112 :version "28.1")
113 113
114(defface icomplete-section '((t :inherit shadow :slant italic)) 114(defface icomplete-section '((t :inherit shadow :slant italic))
115 "Face used by `icomplete-vertical-mode' for the section title.") 115 "Face used by `icomplete-vertical-mode' for the section title."
116 :version "28.1")
116 117
117;;;_* User Customization variables 118;;;_* User Customization variables
118(defcustom icomplete-prospects-height 2 119(defcustom icomplete-prospects-height 2
@@ -750,7 +751,7 @@ See `icomplete-mode' and `minibuffer-setup-hook'."
750(defun icomplete--augment (md prospects) 751(defun icomplete--augment (md prospects)
751 "Augment completion strings in PROSPECTS with completion metadata MD. 752 "Augment completion strings in PROSPECTS with completion metadata MD.
752Return a list of strings (COMP PREFIX SUFFIX SECTION). PREFIX 753Return a list of strings (COMP PREFIX SUFFIX SECTION). PREFIX
753and SUFFIX, if non-nil are obtained from `affixation-function' or 754and SUFFIX, if non-nil, are obtained from `affixation-function' or
754`annotation-function' metadata. SECTION is obtained from 755`annotation-function' metadata. SECTION is obtained from
755`group-function'. Consecutive `equal' sections are avoided. 756`group-function'. Consecutive `equal' sections are avoided.
756COMP is the element in PROSPECTS or a transformation also given 757COMP is the element in PROSPECTS or a transformation also given