From: Richard M. Stallman Date: Thu, 10 Nov 1994 18:51:12 +0000 (+0000) Subject: (Fnewline): Always use insert_and_inherit. X-Git-Tag: emacs-19.34~5971 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfb756b7d35781ef6a3079d7e9f224d5437aa229;p=emacs.git (Fnewline): Always use insert_and_inherit. --- 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.") while (XINT (arg) > 0) { if (flag) - insert (&c1, 1); + insert_and_inherit (&c1, 1); else internal_self_insert ('\n', !NILP (arg1)); /* Ok since old and new vals both nonneg */