* lisp/emacs-lisp/comp-cstr.el (comp-cstr-=): Remove unnecessary
quote.
* lisp/emacs-lisp/comp.el (comp-compile-ctxt-to-file): Likewise.
for v in (valset cstr)
do
(when-let* ((ok (floatp v))
- (truncated (ignore-error 'overflow-error
+ (truncated (ignore-error overflow-error
(truncate v)))
(ok (= v truncated)))
(push (cons truncated truncated) (range cstr))))
(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)))