* Improve reproducibility of inferred values by native comp
* lisp/emacs-lisp/comp-cstr.el (comp-normalize-valset): Do not try to reorder conses using 'sxhash-equal' as its behavior is not reproducible over different sessions.
This commit is contained in:
parent
9f9da26e0d
commit
614b244a7f
1 changed files with 2 additions and 0 deletions
|
@ -203,6 +203,8 @@ Return them as multiple value."
|
||||||
t)
|
t)
|
||||||
((and (not (symbolp x)) (symbolp y))
|
((and (not (symbolp x)) (symbolp y))
|
||||||
nil)
|
nil)
|
||||||
|
((or (consp x) (consp y)
|
||||||
|
nil))
|
||||||
(t
|
(t
|
||||||
(< (sxhash-equal x)
|
(< (sxhash-equal x)
|
||||||
(sxhash-equal y)))))))
|
(sxhash-equal y)))))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue