]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change in simple.el.
authorBasil L. Contovounesios <contovob@tcd.ie>
Mon, 15 Feb 2021 21:50:38 +0000 (21:50 +0000)
committerBasil L. Contovounesios <contovob@tcd.ie>
Tue, 16 Feb 2021 00:07:44 +0000 (00:07 +0000)
lisp/simple.el

index 8a9f46cef6c4414faee47798337edde32b1e0c4c..215f4399f4ade0890abd8e84fc45ea699a71075f 100644 (file)
@@ -1906,14 +1906,14 @@ to get different commands to edit and resubmit."
 
 (defcustom read-extended-command-predicate #'completion-default-include-p
   "Predicate to use to determine which commands to include when completing.
-The predicate function is called with two parameter: The
+The predicate function is called with two parameters: The
 symbol (i.e., command) in question that should be included or
 not, and the current buffer.  The predicate should return non-nil
 if the command should be present when doing `M-x TAB'."
   :version "28.1"
-  :type '(choice (const :tag "Exclude commands not relevant to the current mode"
-                        #'completion-default-include-p)
-                 (const :tag "All commands" (lambda (_ _) t))
+  :type `(choice (const :tag "Exclude commands not relevant to the current mode"
+                        completion-default-include-p)
+                 (const :tag "All commands" ,(lambda (_s _b) t))
                  (function :tag "Other function")))
 
 (defun read-extended-command ()