# HG changeset patch # User Richard M. Stallman # Date 790490042 0 # Node ID caf4440e63e8a0c7edc12238882719a87bf55088 # Parent 95868461fc78464d75879e89a0749049915cb073 (internal_self_insert): Don't test current_column when deciding to call auto_fill_function. diff -r 95868461fc78 -r caf4440e63e8 src/cmds.c --- a/src/cmds.c Thu Jan 19 04:29:17 1995 +0000 +++ b/src/cmds.c Thu Jan 19 04:34:02 1995 +0000 @@ -355,8 +355,7 @@ } 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);