summaryrefslogtreecommitdiff
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-19 04:02:50 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-19 04:02:50 +0000
commit1f12fb4b5dc2c96bf125d6bc430867ad294a19ae (patch)
treecbcc2258beb0204cee3568c052258a6eb2215d95 /lisp/completion.el
parent3f92df6ec5fae5f6e06b6b7984056302bfcd38f4 (diff)
downloademacs-1f12fb4b5dc2c96bf125d6bc430867ad294a19ae.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.el3
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))
)