aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-01-19 04:02:50 +0000
committerRichard M. Stallman <[email protected]>1995-01-19 04:02:50 +0000
commita72632181c9680ef65c1dc5bac1c8a60f34db62c (patch)
treed07c9fa9df714f28b7d1564be6b91a04bec377dd /lisp/completion.el
parent650f194c5accb990c199fd802fd6778ca5b394c8 (diff)
(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 8964556f04..2818280768 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))
)