diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 30fcbf2b9cc..48a7fe80615 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -149,10 +149,10 @@ The return value of this function is not used." ''completion-predicate val))) (defalias 'byte-run--set-modes - #'(lambda (f _args val) + #'(lambda (f _args &rest val) (list 'function-put (list 'quote f) ''completion-predicate `(lambda (_ b) - (completion-with-modes-p ,val b))))) + (completion-with-modes-p ',val b))))) ;; Add any new entries to info node `(elisp)Declare Form'. (defvar defun-declarations-alist |