Mercurial > emacs
diff src/cmds.c @ 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 | a831980bb12e |
| children | a6be4973b11f |
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)
