summaryrefslogtreecommitdiff
path: root/src/cmds.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-19 04:34:02 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-19 04:34:02 +0000
commit3de15b7ad1643223f6a34d0d17b3ef31a4a50026 (patch)
tree3e72b0bf27d888cbe1a18e13ebf37733b06d55ba /src/cmds.c
parent9a04e20535e309d1d4b1fe31fddc772e58ec6501 (diff)
downloademacs-3de15b7ad1643223f6a34d0d17b3ef31a4a50026.tar.gz
(internal_self_insert): Don't test current_column
when deciding to call auto_fill_function.
Diffstat (limited to 'src/cmds.c')
-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)
}
if ((c == ' ' || c == '\n')
&& !noautofill
- && !NILP (current_buffer->auto_fill_function)
- && current_column () > XFASTINT (current_buffer->fill_column))
+ && !NILP (current_buffer->auto_fill_function))
{
if (c1 != '\n')
insert_and_inherit (&c1, 1);