]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of 'just-one-space' and 'delete-horizontal-space'
authorEli Zaretskii <eliz@gnu.org>
Sat, 18 Feb 2023 18:03:33 +0000 (20:03 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 18 Feb 2023 18:03:33 +0000 (20:03 +0200)
* lisp/simple.el (just-one-space, delete-horizontal-space):
Mention the effect of prefix argument.  (Bug#61609)

lisp/simple.el

index c58acfe3adc448dc461623caf055f147cf78f750..c2d10b4dcb4f0c42032c5fa79ca0922ddfc30808 100644 (file)
@@ -1088,7 +1088,8 @@ 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, delete them only before point."
+If BACKWARD-ONLY is non-nil (interactively, the prefix argument), delete
+them only before point."
   (interactive "*P")
   (delete-space--internal " \t" backward-only))
 
@@ -1114,6 +1115,7 @@ If BACKWARD-ONLY is non-nil, delete them only before point."
 
 (defun just-one-space (&optional n)
   "Delete all spaces and tabs around point, leaving one space (or N spaces).
+Interactively, N is the prefix numeric argument.
 If N is negative, delete newlines as well, leaving -N spaces.
 See also `cycle-spacing'."
   (interactive "*p")