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
commit85dddc65990c07fdf01a1c027cfee2239942149d (patch)
tree18e84b86dcff11504b7ea2e9f25ba30bc4325b7d /src/cmds.c
parent1ea5c51e1640ed77c57b5eec88947b341cb29cc3 (diff)
downloademacs-85dddc65990c07fdf01a1c027cfee2239942149d.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);