diff options
| author | Richard M. Stallman | 1992-10-30 05:38:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-30 05:38:03 +0000 |
| commit | e47b25708bd1da0788727bd662ed813d1f422638 (patch) | |
| tree | 9c328e604ba8a8b9eb589c6d4f2ea37d7c502f9d | |
| parent | e36ba278378a67b25e3d21fdba36e79de7b2c57a (diff) | |
| download | emacs-e47b25708bd1da0788727bd662ed813d1f422638.tar.gz emacs-e47b25708bd1da0788727bd662ed813d1f422638.zip | |
Doc fix.
| -rw-r--r-- | lisp/tabify.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/tabify.el b/lisp/tabify.el index cb9508efa3e..b1a8e35fe2e 100644 --- a/lisp/tabify.el +++ b/lisp/tabify.el | |||
| @@ -25,7 +25,9 @@ | |||
| 25 | ;;;###autoload | 25 | ;;;###autoload |
| 26 | (defun untabify (start end) | 26 | (defun untabify (start end) |
| 27 | "Convert all tabs in region to multiple spaces, preserving columns. | 27 | "Convert all tabs in region to multiple spaces, preserving columns. |
| 28 | The variable tab-width controls the action." | 28 | Called non-interactively, the region is specified by arguments |
| 29 | START and END, rather than by the position of point and mark. | ||
| 30 | The variable `tab-width' controls the spacing of tab stops." | ||
| 29 | (interactive "r") | 31 | (interactive "r") |
| 30 | (save-excursion | 32 | (save-excursion |
| 31 | (save-restriction | 33 | (save-restriction |
| @@ -44,7 +46,9 @@ The variable tab-width controls the action." | |||
| 44 | "Convert multiple spaces in region to tabs when possible. | 46 | "Convert multiple spaces in region to tabs when possible. |
| 45 | A group of spaces is partially replaced by tabs | 47 | A group of spaces is partially replaced by tabs |
| 46 | when this can be done without changing the column they end at. | 48 | when this can be done without changing the column they end at. |
| 47 | The variable tab-width controls the action." | 49 | Called non-interactively, the region is specified by arguments |
| 50 | START and END, rather than by the position of point and mark. | ||
| 51 | The variable `tab-width' controls the spacing of tab stops." | ||
| 48 | (interactive "r") | 52 | (interactive "r") |
| 49 | (save-excursion | 53 | (save-excursion |
| 50 | (save-restriction | 54 | (save-restriction |