Function: ietf-drums-unfold-fws
ietf-drums-unfold-fws is an autoloaded and byte-compiled function
defined in ietf-drums.el.gz.
Signature
(ietf-drums-unfold-fws)
Documentation
Unfold folding white space in the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/ietf-drums.el.gz
(defun ietf-drums-unfold-fws ()
"Unfold folding white space in the current buffer."
(goto-char (point-min))
(while (re-search-forward ietf-drums-fws-regexp nil t)
(replace-match " " t t))
(goto-char (point-min)))