Doc fixes.
[tar.git] / doc / untabify.el
blob77dd5c05a5c2f57bbabc6560a46159be051e1607
1 ;;;; Untabify the sources.
2 ;;;; Usage: emacs -batch -l untabify.el [file ...]
4 (defun global-untabify (buflist)
5 (mapcar
6 (lambda (bufname)
7 (set-buffer (find-file bufname))
8 (untabify (point-min) (point-max))
9 (save-buffer)
10 (kill-buffer (current-buffer)))
11 buflist))
13 (global-untabify command-line-args-left)