Fequal_including_properties fix
authorRobin Templeton <robin@terpri.org>
Fri, 18 Jul 2014 19:07:12 +0000 (15:07 -0400)
committerRobin Templeton <robin@terpri.org>
Mon, 20 Apr 2015 04:29:02 +0000 (00:29 -0400)
src/fns.c

index fc5d044..05e79bb 100644 (file)
--- 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;
 }