aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-10 18:51:12 +0000
committerRichard M. Stallman1994-11-10 18:51:12 +0000
commitdfb756b7d35781ef6a3079d7e9f224d5437aa229 (patch)
treef70a38e2ab228c3045ec6ef18d9b6cc2d5198207
parent71207de2b6ad7848cd5962595b8283c3dd421d4d (diff)
downloademacs-dfb756b7d35781ef6a3079d7e9f224d5437aa229.tar.gz
emacs-dfb756b7d35781ef6a3079d7e9f224d5437aa229.zip
(Fnewline): Always use insert_and_inherit.
-rw-r--r--src/cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 88f61234333..487751c618f 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -269,7 +269,7 @@ In Auto Fill mode, if no numeric arg, break the preceding line if it's long.")
269 while (XINT (arg) > 0) 269 while (XINT (arg) > 0)
270 { 270 {
271 if (flag) 271 if (flag)
272 insert (&c1, 1); 272 insert_and_inherit (&c1, 1);
273 else 273 else
274 internal_self_insert ('\n', !NILP (arg1)); 274 internal_self_insert ('\n', !NILP (arg1));
275 /* Ok since old and new vals both nonneg */ 275 /* Ok since old and new vals both nonneg */