aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-07-18 15:07:12 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:02 -0400
commit3f13130005dfc51fa4982659aa289cb8753cfd26 (patch)
tree41238c6824783bb14cfe9df465dc1e4d7114a4be /src
parent9abd03f2a69e166b8bf7d39941472a3f0b991f19 (diff)
Fequal_including_properties fix
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index fc5d044560..05e79bb060 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2042,10 +2042,10 @@ of strings. (`equal' ignores text properties.) */)
{
Lisp_Object tem;
- scm_dynwind_begin (0);
+ dynwind_begin ();
scm_dynwind_fluid (compare_text_properties, SCM_BOOL_T);
tem = Fequal (o1, o2);
- scm_dynwind_end ();
+ dynwind_end ();
return tem;
}