Mercurial > emacs
changeset 10465:00e1546cc687
(completion-separator-self-insert-autofilling):
Don't check fill-column; do-auto-fill will do that.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 19 Jan 1995 04:02:50 +0000 |
parents | 765fe4b8deaf |
children | 795d0e6cda6b |
files | lisp/completion.el |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/completion.el Thu Jan 19 04:02:06 1995 +0000 +++ b/lisp/completion.el Thu Jan 19 04:02:50 1995 +0000 @@ -2487,8 +2487,7 @@ (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)) )