Function: edt-eliminate-all-tabs
edt-eliminate-all-tabs is an interactive and byte-compiled function
defined in edt.el.gz.
Signature
(edt-eliminate-all-tabs)
Documentation
Convert all tabs to spaces in the entire buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; ELIMINATE ALL TABS
;;;
(defun edt-eliminate-all-tabs ()
"Convert all tabs to spaces in the entire buffer."
(interactive "*")
(untabify (point-min) (point-max))
(message "TABS converted to SPACES"))