diff options
| -rw-r--r-- | lisp/mail/flow-fill.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mail/flow-fill.el b/lisp/mail/flow-fill.el index ed6a2df87dc..948a7d799f5 100644 --- a/lisp/mail/flow-fill.el +++ b/lisp/mail/flow-fill.el | |||
| @@ -114,7 +114,12 @@ RFC 2646 suggests 66 characters for readability." | |||
| 114 | 114 | ||
| 115 | ;;;###autoload | 115 | ;;;###autoload |
| 116 | (defun fill-flowed (&optional buffer delete-space) | 116 | (defun fill-flowed (&optional buffer delete-space) |
| 117 | (with-current-buffer (or (current-buffer) buffer) | 117 | "Apply RFC2646 decoding to BUFFER. |
| 118 | If BUFFER is nil, default to the current buffer. | ||
| 119 | |||
| 120 | If DELETE-SPACE, delete RFC2646 spaces padding at the end of | ||
| 121 | lines." | ||
| 122 | (with-current-buffer (or buffer (current-buffer)) | ||
| 118 | (goto-char (point-min)) | 123 | (goto-char (point-min)) |
| 119 | ;; Remove space stuffing. | 124 | ;; Remove space stuffing. |
| 120 | (while (re-search-forward "^\\( \\|>+ $\\)" nil t) | 125 | (while (re-search-forward "^\\( \\|>+ $\\)" nil t) |