Function: nnmaildir--tab-to-space
nnmaildir--tab-to-space is a byte-compiled function defined in
nnmaildir.el.gz.
Signature
(nnmaildir--tab-to-space STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmaildir.el.gz
(defun nnmaildir--tab-to-space (string)
(let ((pos 0))
(while (string-match "\t" string pos)
(aset string (match-beginning 0) ? )
(setq pos (match-end 0))))
string)