From 5119b4121eb107253e848db189b0935525ee0824 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 7 Apr 1993 04:27:30 +0000 Subject: [PATCH] (untabify): Don't really change where restriction starts. --- lisp/tabify.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))