Function: gnus-simplify-all-whitespace

gnus-simplify-all-whitespace is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-simplify-all-whitespace STR)

Documentation

Remove all whitespace from STR.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-simplify-all-whitespace (str)
  "Remove all whitespace from STR."
  (while (string-match "[ \t\n]+" str)
    (setq str (replace-match "" nil nil str)))
  str)