untabify.el 332 B

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