summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2019-12-24 16:58:44 +0100
committerAndrea Corallo <akrl@sdf.org>2020-01-01 11:38:16 +0100
commit2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca (patch)
tree4eacc085f5c92d528b822afef212fc45439e2916 /lisp/emacs-lisp
parent568883c9be8bfbb15ea48ae0de2c117894e8db4e (diff)
downloademacs-2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca.tar.gz
emacs-2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca.tar.bz2
emacs-2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca.zip
some style fixes
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index e8a9b6c2b69..6b9965b8200 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -406,7 +406,7 @@ Put PREFIX in front of it."
"Byte compile FUNCTION-NAME spilling data from the byte compiler."
(let* ((f (symbol-function function-name))
(func (make-comp-func :name function-name
- :c-name (comp-c-func-name function-name"F")
+ :c-name (comp-c-func-name function-name "F")
:doc (documentation f)
:int-spec (interactive-form f))))
(when (byte-code-function-p f)