[mew-win32 4517] Re: mew-wrap-lines: Symbol's function definition is void: fill-match-adaptive-prefix
Kazu Yamamoto (山本和彦) <[email protected]>
| Newsgroups | gmane.mail.mew.windows |
|---|---|
| Message-ID | <[email protected]> |
> Mew 6.2 format=flowed
> mew-wrap-lines: Symbol's function definition is void:
> fill-match-adaptive-prefix
>
Meadow 2
.emacs
(defun fill-match-adaptive-prefix ()
(let ((str (or
(and adaptive-fill-function (funcall adaptive-fill-function))
(and adaptive-fill-regexp (looking-at adaptive-fill-regexp)
(match-string-no-properties 0)))))
(if (>= (+ (current-left-margin) (length str)) (current-fill-column))
;; Death to insanely long prefixes.
nil
str)))
Mew
--