* doc/rendition.texi: Change the way FIXME-*refs are handled in !PROOF. * doc/intern.texi, doc/tar.texi: Update. * doc/untabify.el: New file. * doc/Makefile.am (EXTRA_DIST): Add untabify.el (untabify, final, check-format, check-refs, check-fixmes) (check-unrevised, all-check-docs, check-docs): New rules.
14 lines
332 B
EmacsLisp
14 lines
332 B
EmacsLisp
;;;; Untabify the sources.
|
|
;;;; Usage: emacs -batch -l untabify.el [file ...]
|
|
|
|
(defun global-untabify (buflist)
|
|
(mapcar
|
|
(lambda (bufname)
|
|
(set-buffer (find-file bufname))
|
|
(untabify (point-min) (point-max))
|
|
(save-buffer)
|
|
(kill-buffer (current-buffer)))
|
|
buflist))
|
|
|
|
(global-untabify command-line-args-left)
|