aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 3f678439be9..d70d5e8daa8 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -886,6 +886,7 @@ do_cdr:
886 return (extract_float (o1) == extract_float (o2)) ? Qt : Qnil; 886 return (extract_float (o1) == extract_float (o2)) ? Qt : Qnil;
887#endif 887#endif
888 if (XTYPE (o1) != XTYPE (o2)) return Qnil; 888 if (XTYPE (o1) != XTYPE (o2)) return Qnil;
889 if (MISCP (o1) && XMISC (o1)->type != XMISC (o2)->type) return Qnil;
889 if (CONSP (o1) || OVERLAYP (o1)) 890 if (CONSP (o1) || OVERLAYP (o1))
890 { 891 {
891 Lisp_Object v1; 892 Lisp_Object v1;