summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/comp.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-03-21 09:28:25 +0100
committerAndrea Corallo <akrl@sdf.org>2021-03-21 09:28:25 +0100
commit08682ccc3154eaae993dbcb71a6498d1c06d80ae (patch)
tree5db307545236bc1000b8609cb1234b963216223c /lisp/emacs-lisp/comp.el
parentbe22cda7be9e77e67f224f6f07cca9dd44aaa078 (diff)
downloademacs-08682ccc3154eaae993dbcb71a6498d1c06d80ae.tar.gz
emacs-08682ccc3154eaae993dbcb71a6498d1c06d80ae.tar.bz2
emacs-08682ccc3154eaae993dbcb71a6498d1c06d80ae.zip
; Remove two unnecessary quotes
* lisp/emacs-lisp/comp-cstr.el (comp-cstr-=): Remove unnecessary quote. * lisp/emacs-lisp/comp.el (comp-compile-ctxt-to-file): Likewise.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-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 ca4be0fe976..76b4733cfaa 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -3606,7 +3606,7 @@ Prepare every function for final compilation and drive the C back-end."
(comp-ctxt-funcs-h comp-ctxt))
(unless (file-exists-p dir)
;; In case it's created in the meanwhile.
- (ignore-error 'file-already-exists
+ (ignore-error file-already-exists
(make-directory dir t)))
(comp--compile-ctxt-to-file name)))