]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of completion functions
authorNoam Postavsky <npostavs@gmail.com>
Wed, 8 Jun 2016 03:37:05 +0000 (23:37 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 18 Jun 2016 18:59:23 +0000 (14:59 -0400)
So that the described behavior matches the code (and docstrings).

* doc/lispref/minibuf.texi (Basic Completion): Symbol keys of hash table
collections are used like string keys, not ignored (Bug #10416).

doc/lispref/minibuf.texi

index 6f41090ebea2ab7442c14d3270aa5f5578392312..1fa2536db4ea46f2f194e4925c80a02be300631c 100644 (file)
@@ -733,8 +733,8 @@ list contains elements of any other type, those are ignored.
 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
 of all symbols in the obarray form the set of permissible completions.
 
-If @var{collection} is a hash table, then the keys that are strings
-are the possible completions.  Other keys are ignored.
+If @var{collection} is a hash table, then the keys that are strings or
+symbols are the possible completions.  Other keys are ignored.
 
 You can also use a function as @var{collection}.  Then the function is
 solely responsible for performing completion; @code{try-completion}