aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-19 04:34:02 +0000
committerRichard M. Stallman1995-01-19 04:34:02 +0000
commit3de15b7ad1643223f6a34d0d17b3ef31a4a50026 (patch)
tree3e72b0bf27d888cbe1a18e13ebf37733b06d55ba /src
parent9a04e20535e309d1d4b1fe31fddc772e58ec6501 (diff)
downloademacs-3de15b7ad1643223f6a34d0d17b3ef31a4a50026.tar.gz
emacs-3de15b7ad1643223f6a34d0d17b3ef31a4a50026.zip
(internal_self_insert): Don't test current_column
when deciding to call auto_fill_function.
Diffstat (limited to 'src')
-rw-r--r--src/cmds.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 34a4facbb6a..af3b08ae659 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -355,8 +355,7 @@ internal_self_insert (c1, noautofill)
355 } 355 }
356 if ((c == ' ' || c == '\n') 356 if ((c == ' ' || c == '\n')
357 && !noautofill 357 && !noautofill
358 && !NILP (current_buffer->auto_fill_function) 358 && !NILP (current_buffer->auto_fill_function))
359 && current_column () > XFASTINT (current_buffer->fill_column))
360 { 359 {
361 if (c1 != '\n') 360 if (c1 != '\n')
362 insert_and_inherit (&c1, 1); 361 insert_and_inherit (&c1, 1);