* 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)
|
||||
((and (not (symbolp x)) (symbolp y))
|
||||
nil)
|
||||
((or (consp x) (consp y)
|
||||
nil))
|
||||
(t
|
||||
(< (sxhash-equal x)
|
||||
(sxhash-equal y)))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue