diff options
| author | Richard M. Stallman | 1995-09-01 02:01:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-09-01 02:01:29 +0000 |
| commit | eeb82665b2a63a69ead28f86a595d1f10475aff8 (patch) | |
| tree | dc6666d3ba8e73e7a50e5627ea8fd84ac588b16b /src | |
| parent | cbc9f037ea68345772e84fab45f9547e2e501637 (diff) | |
| download | emacs-eeb82665b2a63a69ead28f86a595d1f10475aff8.tar.gz emacs-eeb82665b2a63a69ead28f86a595d1f10475aff8.zip | |
(save_window_save): Pass the new arg to Fcopy_marker.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index 4c1a5e8bee1..8dd05a14dc0 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -3217,13 +3217,13 @@ save_window_save (window, vector, i) | |||
| 3217 | w->buffer); | 3217 | w->buffer); |
| 3218 | } | 3218 | } |
| 3219 | else | 3219 | else |
| 3220 | p->pointm = Fcopy_marker (w->pointm); | 3220 | p->pointm = Fcopy_marker (w->pointm, Qnil); |
| 3221 | 3221 | ||
| 3222 | p->start = Fcopy_marker (w->start); | 3222 | p->start = Fcopy_marker (w->start, Qnil); |
| 3223 | p->start_at_line_beg = w->start_at_line_beg; | 3223 | p->start_at_line_beg = w->start_at_line_beg; |
| 3224 | 3224 | ||
| 3225 | tem = XBUFFER (w->buffer)->mark; | 3225 | tem = XBUFFER (w->buffer)->mark; |
| 3226 | p->mark = Fcopy_marker (tem); | 3226 | p->mark = Fcopy_marker (tem, Qnil); |
| 3227 | } | 3227 | } |
| 3228 | else | 3228 | else |
| 3229 | { | 3229 | { |