From a168699d171a658d539ee20082effdfb0530f4bb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 17 Dec 2006 22:14:48 +0000 Subject: [PATCH] (delete-horizontal-space): Use prefix arg. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index aa44fa382ba..2043a20cf9b 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -707,7 +707,7 @@ Leave one space or none, according to the context." (defun delete-horizontal-space (&optional backward-only) "Delete all spaces and tabs around point. If BACKWARD-ONLY is non-nil, only delete spaces before point." - (interactive "*") + (interactive "*P") (let ((orig-pos (point))) (delete-region (if backward-only -- 2.39.2