emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111010: * lisp/simple.el (just-on


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111010: * lisp/simple.el (just-one-space): Doc fix.
Date: Sat, 08 Dec 2012 11:25:28 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111010
fixes bug: http://debbugs.gnu.org/12748
author: Dani Moncayo <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: emacs-24
timestamp: Sat 2012-12-08 11:25:28 +0800
message:
  * lisp/simple.el (just-one-space): Doc fix.
  * doc/emacs/killing.texi (Deletion): Doc fix.
modified:
  doc/emacs/ChangeLog
  doc/emacs/killing.texi
  lisp/ChangeLog
  lisp/simple.el
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2012-12-03 01:45:26 +0000
+++ b/doc/emacs/ChangeLog       2012-12-08 03:25:28 +0000
@@ -1,3 +1,7 @@
+2012-12-08  Dani Moncayo  <address@hidden>
+
+       * killing.texi (Deletion): Doc fix (Bug#12748).
+
 2012-12-03  Juanma Barranquero  <address@hidden>
 
        * vc1-xtra.texi (General VC Options): Remove obsolete reference

=== modified file 'doc/emacs/killing.texi'
--- a/doc/emacs/killing.texi    2012-12-05 22:27:56 +0000
+++ b/doc/emacs/killing.texi    2012-12-08 03:25:28 +0000
@@ -123,7 +123,7 @@
 (even if there were none before).  With a numeric argument @var{n}, it
 leaves @var{n} spaces before point if @var{n} is positive; if @var{n}
 is negative, it deletes newlines in addition to spaces and tabs,
-leaving a single space before point.
+leaving @var{-n} spaces before point.
 
   @kbd{C-x C-o} (@code{delete-blank-lines}) deletes all blank lines
 after the current line.  If the current line is blank, it deletes all

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-12-07 15:52:40 +0000
+++ b/lisp/ChangeLog    2012-12-08 03:25:28 +0000
@@ -1,3 +1,7 @@
+2012-12-08  Dani Moncayo <address@hidden>
+
+       * simple.el (just-one-space): Doc fix.
+
 2012-12-07  Eli Zaretskii  <address@hidden>
 
        * textmodes/texinfo.el (texinfo-enable-quote-envs): Add

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2012-11-28 07:16:45 +0000
+++ b/lisp/simple.el    2012-12-08 03:25:28 +0000
@@ -744,7 +744,7 @@
 
 (defun just-one-space (&optional n)
   "Delete all spaces and tabs around point, leaving one space (or N spaces).
-If N is negative, delete newlines as well."
+If N is negative, delete newlines as well, leaving -N spaces."
   (interactive "*p")
   (unless n (setq n 1))
   (let ((orig-pos (point))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]