diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-06-26 10:03:48 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-06-26 10:03:48 -0400 |
commit | 698ff554ac2699ec48fefc85a1307cbc4a183b0d (patch) | |
tree | a7b7592f7973f81cad4410366d313e790616907e /lisp/completion.el | |
parent | 9233865b7005831e63755eb84ae7da060f878a55 (diff) | |
download | emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.tar.gz |
* lisp/calc/calc-ext.el (math-scalarp): Fix typo
Diffstat (limited to 'lisp/completion.el')
-rw-r--r-- | lisp/completion.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index b9c3a21f5ea..d5450998204 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -2221,7 +2221,7 @@ TYPE is the type of the wrapper to be added. Can be :before or :under." (defun completion-before-command () (funcall (or (and (symbolp this-command) (get this-command 'completion-function)) - 'use-completion-under-or-before-point))) + #'use-completion-under-or-before-point))) ;; Lisp mode diffs. |