]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for just-one-space change. Document it in NEWS.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 16 Dec 2010 01:20:46 +0000 (09:20 +0800)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 16 Dec 2010 01:20:46 +0000 (09:20 +0800)
etc/NEWS
lisp/simple.el

index 178631bc28ba1bbc4854b5a7735bfed9ad69e04f..8dd6d3ef9be3bdebf53ac18f04bc6220f6c37a5b 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -232,6 +232,9 @@ replaced with Lisp commands `doc-file-to-man' and `doc-file-to-info'.
 
 ** The default value of `backup-by-copying-when-mismatch' is now t.
 
+** The command `just-one-space' (C-SPC), if given a negative argument,
+also deletes newlines around point.
+
 ** Deletion changes
 
 *** New option `delete-active-region'.
index da8ac55c01d8a2a3f14000fb19af57db7afe8ae9..ca365e9f85460c81c51eb9b3a816adf8c850f403 100644 (file)
@@ -762,7 +762,7 @@ If BACKWARD-ONLY is non-nil, only delete them before point."
 
 (defun just-one-space (&optional n)
   "Delete all spaces and tabs around point, leaving one space (or N spaces).
-If N is negative, deletes carriage return and linefeed characters as well."
+If N is negative, delete newlines as well."
   (interactive "*p")
   (unless n (setq n 1))
   (let ((orig-pos (point))