aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-28 06:48:56 +0000
committerRichard M. Stallman1994-08-28 06:48:56 +0000
commitb9a7407ff9d83222a02f083731f2b824960b7f7e (patch)
tree6964537ed23607702a9d3b187d39c603cfdf9468 /src
parent6d1bd1a58117f5af583d661e0ebce602e91e50ca (diff)
downloademacs-b9a7407ff9d83222a02f083731f2b824960b7f7e.tar.gz
emacs-b9a7407ff9d83222a02f083731f2b824960b7f7e.zip
(internal_self_insert): Use insert_and_inherit.
Diffstat (limited to 'src')
-rw-r--r--src/cmds.c6
1 files 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)
335 && current_column () > XFASTINT (current_buffer->fill_column)) 335 && current_column () > XFASTINT (current_buffer->fill_column))
336 { 336 {
337 if (c1 != '\n') 337 if (c1 != '\n')
338 insert (&c1, 1); 338 insert_and_inherit (&c1, 1);
339 call0 (current_buffer->auto_fill_function); 339 call0 (current_buffer->auto_fill_function);
340 if (c1 == '\n') 340 if (c1 == '\n')
341 insert (&c1, 1); 341 insert_and_inherit (&c1, 1);
342 hairy = 2; 342 hairy = 2;
343 } 343 }
344 else 344 else
345 insert (&c1, 1); 345 insert_and_inherit (&c1, 1);
346 synt = SYNTAX (c); 346 synt = SYNTAX (c);
347 if ((synt == Sclose || synt == Smath) 347 if ((synt == Sclose || synt == Smath)
348 && !NILP (Vblink_paren_function) && INTERACTIVE) 348 && !NILP (Vblink_paren_function) && INTERACTIVE)