From b9a7407ff9d83222a02f083731f2b824960b7f7e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Aug 1994 06:48:56 +0000 Subject: [PATCH] (internal_self_insert): Use insert_and_inherit. --- src/cmds.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.39.5