]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-separator-self-insert-autofilling):
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Jan 1995 04:02:50 +0000 (04:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Jan 1995 04:02:50 +0000 (04:02 +0000)
Don't check fill-column; do-auto-fill will do that.

lisp/completion.el

index 8964556f04ed1d9883e5b8401536c48b4f1c073c..28182807681d4961cb2f97bec49ad974a42b7b16 100644 (file)
@@ -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))
   )