aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/comp-cstr.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el
index 7452b8568de..73d445eb3f4 100644
--- a/lisp/emacs-lisp/comp-cstr.el
+++ b/lisp/emacs-lisp/comp-cstr.el
@@ -929,11 +929,9 @@ Non memoized version of `comp-cstr-intersection-no-mem'."
929 (with-comp-cstr-accessors 929 (with-comp-cstr-accessors
930 (and (null (range cstr)) 930 (and (null (range cstr))
931 (null (neg cstr)) 931 (null (neg cstr))
932 (or (and (null (valset cstr)) 932 (and (or (null (typeset cstr))
933 (equal (typeset cstr) '(symbol))) 933 (equal (typeset cstr) '(symbol)))
934 (and (or (null (typeset cstr)) 934 (cl-every #'symbolp (valset cstr))))))
935 (equal (typeset cstr) '(symbol)))
936 (cl-every #'symbolp (valset cstr)))))))
937 935
938(defsubst comp-cstr-cons-p (cstr) 936(defsubst comp-cstr-cons-p (cstr)
939 "Return t if CSTR is certainly a cons." 937 "Return t if CSTR is certainly a cons."