* lisp/emacs-lisp/comp-cstr.el (comp-cstr-union-1-no-mem): (not null) => t.
This commit is contained in:
parent
3062480309
commit
70adc28e97
1 changed files with 9 additions and 1 deletions
|
@ -631,7 +631,15 @@ DST is returned."
|
|||
(setf (typeset dst) (typeset neg)
|
||||
(valset dst) (valset neg)
|
||||
(range dst) (range neg)
|
||||
(neg dst) (neg neg))))))
|
||||
(neg dst) (neg neg)))))
|
||||
|
||||
;; (not null) => t
|
||||
(when (and (neg dst)
|
||||
(null (typeset dst))
|
||||
(null (valset dst))
|
||||
(null (range dst)))
|
||||
(give-up)))
|
||||
|
||||
dst)))
|
||||
|
||||
(defun comp-cstr-union-1 (range dst &rest srcs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue