]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix defcustom in completion.el
authorEli Zaretskii <eliz@gnu.org>
Wed, 16 Aug 2023 17:19:34 +0000 (20:19 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 16 Aug 2023 17:19:34 +0000 (20:19 +0300)
* lisp/completion.el (completion-search-distance): Fix doc string
and customization type.  (Bug#65327)

lisp/completion.el

index f119fc6028b8a51ecbbb9fee2b58e62629a65c5f..eed6e77da4ce67bee7571be9aad5b72b107fe4bf 100644 (file)
@@ -322,9 +322,11 @@ This can be time consuming."
   :type 'boolean)
 
 (defcustom completion-search-distance 15000
-  "How far to search in the buffer when looking for completions.
-In number of characters.  If nil, search the whole buffer."
-  :type 'integer)
+  "How far in the buffer to search when looking for completions.
+Limit is measured in characters.  If nil, search the whole buffer."
+  :type '(choice
+          (const :tag "No limit" nil)
+          (integer :tag "Limit in characters")))
 
 (defcustom completions-merging-modes '(lisp c)
   "List of modes {`c' or `lisp'} for automatic completions merging.