# HG changeset patch # User Richard M. Stallman # Date 778056536 0 # Node ID e64cf8a4bf28bab25b596951df37274809786d6c # Parent f047d8c6db79b7a4d4b76f885ecfbefad4c1fc3e (internal_self_insert): Use insert_and_inherit. diff -r f047d8c6db79 -r e64cf8a4bf28 src/cmds.c --- a/src/cmds.c Sun Aug 28 06:08:54 1994 +0000 +++ b/src/cmds.c Sun Aug 28 06:48:56 1994 +0000 @@ -335,14 +335,14 @@ && 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)