diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-03-21 09:28:25 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-03-21 09:28:25 +0100 |
commit | 08682ccc3154eaae993dbcb71a6498d1c06d80ae (patch) | |
tree | 5db307545236bc1000b8609cb1234b963216223c /lisp/emacs-lisp/comp-cstr.el | |
parent | be22cda7be9e77e67f224f6f07cca9dd44aaa078 (diff) | |
download | emacs-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-cstr.el')
-rw-r--r-- | lisp/emacs-lisp/comp-cstr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el index d0b842e7c37..7f5d34b45c3 100644 --- a/lisp/emacs-lisp/comp-cstr.el +++ b/lisp/emacs-lisp/comp-cstr.el @@ -873,7 +873,7 @@ Non memoized version of `comp-cstr-intersection-no-mem'." 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)))) |