From: Richard M. Stallman Date: Thu, 19 Jan 1995 04:34:02 +0000 (+0000) Subject: (internal_self_insert): Don't test current_column X-Git-Tag: emacs-19.34~5384 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3de15b7ad1643223f6a34d0d17b3ef31a4a50026;p=emacs.git (internal_self_insert): Don't test current_column when deciding to call auto_fill_function. --- 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);