changeset 8649:e64cf8a4bf28

(internal_self_insert): Use insert_and_inherit.
author Richard M. Stallman <rms@gnu.org>
date Sun, 28 Aug 1994 06:48:56 +0000
parents f047d8c6db79
children deb008af7049
files src/cmds.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)