(internal_self_insert): Don't test current_column
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Jan 1995 04:34:02 +0000 (04:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Jan 1995 04:34:02 +0000 (04:34 +0000)
when deciding to call auto_fill_function.

src/cmds.c

index 34a4fac..af3b08a 100644 (file)
@@ -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);