]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 34a4facbb6a32cb4940ab2af6e42b46a01037df1..af3b08ae659abbe59df587be61521fbd76ba8f1e 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);