From a72632181c9680ef65c1dc5bac1c8a60f34db62c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Jan 1995 04:02:50 +0000 Subject: [PATCH] (completion-separator-self-insert-autofilling): Don't check fill-column; do-auto-fill will do that. --- lisp/completion.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/completion.el b/lisp/completion.el index 8964556f04e..28182807681 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -2487,8 +2487,7 @@ Patched to remove the most recent completion." (interactive "p") (use-completion-before-separator) (self-insert-command arg) - (and (> (current-column) fill-column) - auto-fill-function + (and auto-fill-function (funcall auto-fill-function)) ) -- 2.39.5