diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2024-02-12 13:21:53 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2024-02-12 13:21:53 +0100 |
commit | df243f785d4ce23bf49e84c8517d673a66fa0089 (patch) | |
tree | 63de30aed66858251105a51fe6bc509e547a7d8d /lisp/emacs-lisp | |
parent | 17a395e04c62d6c6c3f3ff4c4889f03e427e00d3 (diff) | |
parent | 614b244a7fa03fcb27d76757e14ef0fa895d6f23 (diff) | |
download | emacs-df243f785d4ce23bf49e84c8517d673a66fa0089.tar.gz emacs-df243f785d4ce23bf49e84c8517d673a66fa0089.tar.bz2 emacs-df243f785d4ce23bf49e84c8517d673a66fa0089.zip |
Merge branch 'emacs-29' of git.sv.gnu.org:/srv/git/emacs into emacs-29
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp-cstr.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el index 812a79f070d..ecbe6e38a1d 100644 --- a/lisp/emacs-lisp/comp-cstr.el +++ b/lisp/emacs-lisp/comp-cstr.el @@ -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))))))) |