aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c
index f67b95a8e81..8568a61c13f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3636,8 +3636,8 @@ usage: (format STRING &rest OBJECTS) */)
3636 struct info 3636 struct info
3637 { 3637 {
3638 ptrdiff_t start, end; 3638 ptrdiff_t start, end;
3639 unsigned converted_to_string : 1; 3639 bool_bf converted_to_string : 1;
3640 unsigned intervals : 1; 3640 bool_bf intervals : 1;
3641 } *info = 0; 3641 } *info = 0;
3642 3642
3643 /* It should not be necessary to GCPRO ARGS, because 3643 /* It should not be necessary to GCPRO ARGS, because
@@ -4214,7 +4214,7 @@ usage: (format STRING &rest OBJECTS) */)
4214 if (buf == initial_buffer) 4214 if (buf == initial_buffer)
4215 { 4215 {
4216 buf = xmalloc (bufsize); 4216 buf = xmalloc (bufsize);
4217 sa_must_free = 1; 4217 sa_must_free = true;
4218 buf_save_value_index = SPECPDL_INDEX (); 4218 buf_save_value_index = SPECPDL_INDEX ();
4219 record_unwind_protect_ptr (xfree, buf); 4219 record_unwind_protect_ptr (xfree, buf);
4220 memcpy (buf, initial_buffer, used); 4220 memcpy (buf, initial_buffer, used);