]> Dogcows Code - chaz/tar/blob - untabify.el
77dd5c05a5c2f57bbabc6560a46159be051e1607
[chaz/tar] / untabify.el
1 ;;;; Untabify the sources.
2 ;;;; Usage: emacs -batch -l untabify.el [file ...]
3
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))
12
13 (global-untabify command-line-args-left)
This page took 0.03174 seconds and 3 git commands to generate.