changeset 10474:caf4440e63e8

(internal_self_insert): Don't test current_column when deciding to call auto_fill_function.
author Richard M. Stallman <rms@gnu.org>
date Thu, 19 Jan 1995 04:34:02 +0000
parents 95868461fc78
children 2d9590603a06
files src/cmds.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);