diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-07 04:27:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-07 04:27:30 +0000 |
commit | ffd1ed0f1121a9e05dfeb086996818e79912114c (patch) | |
tree | 5f5a237462bc18d038a5af5ff02572c102f52584 /lisp/tabify.el | |
parent | 7f8408c7709b92a41f21e2808c879890b8a82974 (diff) | |
download | emacs-ffd1ed0f1121a9e05dfeb086996818e79912114c.tar.gz |
(untabify): Don't really change where restriction starts.
Diffstat (limited to 'lisp/tabify.el')
-rw-r--r-- | lisp/tabify.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tabify.el b/lisp/tabify.el index cccc99ea1a5..266dd3953b1 100644 --- a/lisp/tabify.el +++ b/lisp/tabify.el @@ -36,7 +36,7 @@ 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)) |