summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-12-17 22:14:48 +0000
committerRichard M. Stallman <rms@gnu.org>2006-12-17 22:14:48 +0000
commita168699d171a658d539ee20082effdfb0530f4bb (patch)
treef3c7e82c06647972ad4ee65051cf8af37acc4d78 /lisp/simple.el
parentcc86b31bb97f039a893d2bd67a77758391f77565 (diff)
downloademacs-a168699d171a658d539ee20082effdfb0530f4bb.tar.gz
(delete-horizontal-space): Use prefix arg.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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