Mercurial > emacs
annotate lisp/tabify.el @ 807:4f28bd14272c
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Thu, 16 Jul 1992 21:47:34 +0000 |
parents | 1ca26ccad38e |
children | 2cdce064065f |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; tabify.el --- tab conversion commands for Emacs |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
3 ;; Maintainer: FSF |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
775
diff
changeset
|
4 ;; Last-Modified: 09 May 1991 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 |
36 | 6 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
775
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
24 ;;; Code: |
36 | 25 |
258 | 26 ;;;###autoload |
36 | 27 (defun untabify (start end) |
28 "Convert all tabs in region to multiple spaces, preserving columns. | |
29 The variable tab-width controls the action." | |
30 (interactive "r") | |
31 (save-excursion | |
32 (save-restriction | |
33 (narrow-to-region start end) | |
34 (goto-char start) | |
35 (while (search-forward "\t" nil t) ; faster than re-search | |
36 (let ((start (point)) | |
37 (column (current-column)) | |
38 (indent-tabs-mode nil)) | |
39 (skip-chars-backward "\t") | |
40 (delete-region start (point)) | |
41 (indent-to column)))))) | |
42 | |
258 | 43 ;;;###autoload |
36 | 44 (defun tabify (start end) |
45 "Convert multiple spaces in region to tabs when possible. | |
46 A group of spaces is partially replaced by tabs | |
47 when this can be done without changing the column they end at. | |
48 The variable tab-width controls the action." | |
49 (interactive "r") | |
50 (save-excursion | |
51 (save-restriction | |
52 (narrow-to-region start end) | |
53 (goto-char start) | |
54 (while (re-search-forward "[ \t][ \t][ \t]*" nil t) | |
55 (let ((column (current-column)) | |
56 (indent-tabs-mode t)) | |
57 (delete-region (match-beginning 0) (point)) | |
58 (indent-to column)))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
59 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
60 ;;; tabify.el ends here |