1 ;;;; Untabify the sources.
2 ;;;; Usage: emacs -batch -l untabify.el [file ...]
4 (defun global-untabify (buflist)
7 (set-buffer (find-file bufname))
8 (untabify (point-min) (point-max))
10 (kill-buffer (current-buffer)))
13 (global-untabify command-line-args-left)