]> code.delx.au - gnu-emacs/blobdiff - lisp/tabify.el
(compilation-set-window-height): New function,
[gnu-emacs] / lisp / tabify.el
index b1a8e35fe2eefe8a75870b0ba6f378fb837d5fa6..aab939550c2ef435e74e660ce7c1f5cbc81de79a 100644 (file)
@@ -1,6 +1,6 @@
 ;;; tabify.el --- tab conversion commands for Emacs
 
-;; Copyright (C) 1985 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1994 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
+;;; Commentary:
+
+;; Commands to optimize spaces to tabs or expand tabs to spaces in a region
+;; (`tabify' and `untabify').  The variable tab-width does the obvious.
+
 ;;; Code:
 
 ;;;###autoload
@@ -31,14 +36,14 @@ The variable `tab-width' controls the spacing of tab stops."
   (interactive "r")
   (save-excursion
     (save-restriction
-      (narrow-to-region start end)
+      (narrow-to-region (point-min) end)
       (goto-char start)
       (while (search-forward "\t" nil t)       ; faster than re-search
-       (let ((start (point))
+       (let ((tab-beg (point))
              (column (current-column))
              (indent-tabs-mode nil))
-         (skip-chars-backward "\t")
-         (delete-region start (point))
+         (skip-chars-backward "\t" start)
+         (delete-region tab-beg (point))
          (indent-to column))))))
 
 ;;;###autoload
@@ -60,4 +65,6 @@ The variable `tab-width' controls the spacing of tab stops."
          (delete-region (match-beginning 0) (point))
          (indent-to column))))))
 
+(provide 'tabify)
+
 ;;; tabify.el ends here