diff options
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 8910b66e4d3..197950517b7 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -833,7 +833,7 @@ This function does not move point. */) | |||
| 833 | Lisp_Object | 833 | Lisp_Object |
| 834 | save_excursion_save (void) | 834 | save_excursion_save (void) |
| 835 | { | 835 | { |
| 836 | return format_save_value | 836 | return make_save_value |
| 837 | ("oooo", | 837 | ("oooo", |
| 838 | Fpoint_marker (), | 838 | Fpoint_marker (), |
| 839 | /* Do not copy the mark if it points to nowhere. */ | 839 | /* Do not copy the mark if it points to nowhere. */ |
| @@ -4249,7 +4249,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 4249 | { | 4249 | { |
| 4250 | buf = xmalloc (bufsize); | 4250 | buf = xmalloc (bufsize); |
| 4251 | sa_must_free = 1; | 4251 | sa_must_free = 1; |
| 4252 | buf_save_value = make_save_value (buf, 0); | 4252 | buf_save_value = make_save_pointer (buf); |
| 4253 | record_unwind_protect (safe_alloca_unwind, buf_save_value); | 4253 | record_unwind_protect (safe_alloca_unwind, buf_save_value); |
| 4254 | memcpy (buf, initial_buffer, used); | 4254 | memcpy (buf, initial_buffer, used); |
| 4255 | } | 4255 | } |