summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-01-26 08:47:06 +0000
committerRichard M. Stallman <rms@gnu.org>1998-01-26 08:47:06 +0000
commitd8e22ff07f40abe688b08b7524c7aea4acce49ab (patch)
tree3029f29ed0c61b9ceeb59d49c4c4b724b99e0df4 /src
parent555d766899e703fc649a7132709cd9c41e0e62c2 (diff)
downloademacs-d8e22ff07f40abe688b08b7524c7aea4acce49ab.tar.gz
(internal_equal): Use compare_window_configurations.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fns.c b/src/fns.c
index 421879fde9f..4b73d330a87 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1510,6 +1510,8 @@ internal_equal (o1, o2, depth)
return 0;
return 1;
}
+ if (WINDOW_CONFIGURATIONP (o1))
+ return compare_window_configurations (o1, o2);
/* Aside from them, only true vectors, char-tables, and compiled
functions are sensible to compare, so eliminate the others now. */