diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2024-01-30 17:09:37 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2024-01-30 17:23:25 -0800 |
commit | 17771b2a425e776c81e7454d942ec238264ce12b (patch) | |
tree | 63b54c51b1a994d2cf6144fdd1b1d067c3add3e3 /lisp/emacs-lisp/comp.el | |
parent | 3afbab2f1d6ce7d75cadf12af096314123b6d56f (diff) | |
download | emacs-17771b2a425e776c81e7454d942ec238264ce12b.tar.gz emacs-17771b2a425e776c81e7454d942ec238264ce12b.tar.bz2 emacs-17771b2a425e776c81e7454d942ec238264ce12b.zip |
; Spelling fixes
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 8441b228898..2a516246ed4 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -569,10 +569,9 @@ In use by the back-end." finally return t) t)) -(defsubst comp--symbol-func-to-fun (symbol-funcion) - "Given a function called SYMBOL-FUNCION return its `comp-func'." - (gethash (gethash symbol-funcion (comp-ctxt-sym-to-c-name-h - comp-ctxt)) +(defsubst comp--symbol-func-to-fun (symbol-func) + "Given a function called SYMBOL-FUNC return its `comp-func'." + (gethash (gethash symbol-func (comp-ctxt-sym-to-c-name-h comp-ctxt)) (comp-ctxt-funcs-h comp-ctxt))) (defun comp--function-pure-p (f) |