From: Richard M. Stallman Date: Sun, 28 Aug 1994 06:48:56 +0000 (+0000) Subject: (internal_self_insert): Use insert_and_inherit. X-Git-Tag: emacs-19.34~7205 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b9a7407ff9d83222a02f083731f2b824960b7f7e;p=emacs.git (internal_self_insert): Use insert_and_inherit. --- diff --git a/src/cmds.c b/src/cmds.c index 582017a410c..a3f23c7ac02 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -335,14 +335,14 @@ internal_self_insert (c1, noautofill) && current_column () > XFASTINT (current_buffer->fill_column)) { if (c1 != '\n') - insert (&c1, 1); + insert_and_inherit (&c1, 1); call0 (current_buffer->auto_fill_function); if (c1 == '\n') - insert (&c1, 1); + insert_and_inherit (&c1, 1); hairy = 2; } else - insert (&c1, 1); + insert_and_inherit (&c1, 1); synt = SYNTAX (c); if ((synt == Sclose || synt == Smath) && !NILP (Vblink_paren_function) && INTERACTIVE)