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 b7feb733782..5445561fad3 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3936,7 +3936,7 @@ usage: (format STRING &rest OBJECTS) */)
3936 3936
3937 /* If this argument has text properties, record where 3937 /* If this argument has text properties, record where
3938 in the result string it appears. */ 3938 in the result string it appears. */
3939 if (string_get_intervals (args[n])) 3939 if (string_intervals (args[n]))
3940 info[n].intervals = arg_intervals = 1; 3940 info[n].intervals = arg_intervals = 1;
3941 3941
3942 continue; 3942 continue;
@@ -4280,7 +4280,7 @@ usage: (format STRING &rest OBJECTS) */)
4280 arguments has text properties, set up text properties of the 4280 arguments has text properties, set up text properties of the
4281 result string. */ 4281 result string. */
4282 4282
4283 if (string_get_intervals (args[0]) || arg_intervals) 4283 if (string_intervals (args[0]) || arg_intervals)
4284 { 4284 {
4285 Lisp_Object len, new_len, props; 4285 Lisp_Object len, new_len, props;
4286 struct gcpro gcpro1; 4286 struct gcpro gcpro1;
@@ -4530,7 +4530,7 @@ Transposing beyond buffer boundaries is an error. */)
4530 Lisp_Object buf; 4530 Lisp_Object buf;
4531 4531
4532 XSETBUFFER (buf, current_buffer); 4532 XSETBUFFER (buf, current_buffer);
4533 cur_intv = buffer_get_intervals (current_buffer); 4533 cur_intv = buffer_intervals (current_buffer);
4534 4534
4535 validate_region (&startr1, &endr1); 4535 validate_region (&startr1, &endr1);
4536 validate_region (&startr2, &endr2); 4536 validate_region (&startr2, &endr2);