diff options
Diffstat (limited to 'lisp/completion.el')
-rw-r--r-- | lisp/completion.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index 6ae62aa8a64..c62673649bf 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -2834,8 +2834,8 @@ Patched to remove the most recent completion." (use-completion-before-separator) (self-insert-command arg) (and (> (current-column) fill-column) - auto-fill-hook - (funcall auto-fill-hook)) + auto-fill-function + (funcall auto-fill-function)) ) ;;;----------------------------------------------- |