From 3de15b7ad1643223f6a34d0d17b3ef31a4a50026 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Jan 1995 04:34:02 +0000 Subject: [PATCH] (internal_self_insert): Don't test current_column when deciding to call auto_fill_function. --- src/cmds.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.39.5