diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-19 04:02:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-19 04:02:50 +0000 |
commit | a72632181c9680ef65c1dc5bac1c8a60f34db62c (patch) | |
tree | d07c9fa9df714f28b7d1564be6b91a04bec377dd /lisp/completion.el | |
parent | 650f194c5accb990c199fd802fd6778ca5b394c8 (diff) | |
download | emacs-a72632181c9680ef65c1dc5bac1c8a60f34db62c.tar.gz |
(completion-separator-self-insert-autofilling):
Don't check fill-column; do-auto-fill will do that.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r-- | lisp/completion.el | 3 |
1 files changed, 1 insertions, 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)) ) |