aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-01-26 08:47:06 +0000
committerRichard M. Stallman1998-01-26 08:47:06 +0000
commited73fcc1fa527e03ba9049d766923027ebad91df (patch)
treebbc2b856d33849e142c965332d67ba6306264277 /src
parent0b9f07b98fcb6b9538b3dea22f22f4d38e428c40 (diff)
downloademacs-ed73fcc1fa527e03ba9049d766923027ebad91df.tar.gz
emacs-ed73fcc1fa527e03ba9049d766923027ebad91df.zip
(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)
1510 return 0; 1510 return 0;
1511 return 1; 1511 return 1;
1512 } 1512 }
1513 if (WINDOW_CONFIGURATIONP (o1))
1514 return compare_window_configurations (o1, o2);
1513 1515
1514 /* Aside from them, only true vectors, char-tables, and compiled 1516 /* Aside from them, only true vectors, char-tables, and compiled
1515 functions are sensible to compare, so eliminate the others now. */ 1517 functions are sensible to compare, so eliminate the others now. */