summaryrefslogtreecommitdiff
path: root/src/editfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-09-01 02:02:17 +0000
committerRichard M. Stallman <rms@gnu.org>1995-09-01 02:02:17 +0000
commitaea4a109af0f37a139c63a0cf86512437612030a (patch)
treecaa93743ac7802cc610f9dee15b87e13be710a90 /src/editfns.c
parenteeb82665b2a63a69ead28f86a595d1f10475aff8 (diff)
downloademacs-aea4a109af0f37a139c63a0cf86512437612030a.tar.gz
(save_excursion_save): Pass the new arg to Fcopy_marker.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index e0593c69bdf..ee4993f057b 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -251,7 +251,7 @@ save_excursion_save ()
== current_buffer);
return Fcons (Fpoint_marker (),
- Fcons (Fcopy_marker (current_buffer->mark),
+ Fcons (Fcopy_marker (current_buffer->mark, Qnil),
Fcons (visible ? Qt : Qnil,
current_buffer->mark_active)));
}