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