From: Richard M. Stallman Date: Thu, 19 Jan 1995 04:02:50 +0000 (+0000) Subject: (completion-separator-self-insert-autofilling): X-Git-Tag: emacs-19.34~5393 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a72632181c9680ef65c1dc5bac1c8a60f34db62c;p=emacs.git (completion-separator-self-insert-autofilling): Don't check fill-column; do-auto-fill will do that. --- 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)) )