diff options
| author | Eli Zaretskii | 2021-08-19 15:29:49 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-08-19 15:29:49 +0300 |
| commit | 787fa7a8ab3ccf12c0e7e4efafd7506999071ea5 (patch) | |
| tree | 31ef1cf373f28ef9705d79e47c73a252a500b58d | |
| parent | 8e93a37b7732e90a2b102b7246cc2cd69d840208 (diff) | |
| download | emacs-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.el | 5 |
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. |
| 752 | Return a list of strings (COMP PREFIX SUFFIX SECTION). PREFIX | 753 | Return a list of strings (COMP PREFIX SUFFIX SECTION). PREFIX |
| 753 | and SUFFIX, if non-nil are obtained from `affixation-function' or | 754 | and 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. |
| 756 | COMP is the element in PROSPECTS or a transformation also given | 757 | COMP is the element in PROSPECTS or a transformation also given |