]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify doc string
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 13 Jul 2011 16:39:49 +0000 (18:39 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 13 Jul 2011 16:39:49 +0000 (18:39 +0200)
* simple.el (toggle-truncate-lines): Clarify what is toggled
(bug#5580).  Text by Drew Adams.

lisp/ChangeLog
lisp/simple.el

index 3dccc44375a0888bf8f2315b576646bd91164d96..c5eb9f94e53ac53402fcaf870db0bf6e628f1df0 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * simple.el (toggle-truncate-lines): Clarify what is toggled
+       (bug#5580).  Text by Drew Adams.
+
 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
 
        * simple.el (blink-matching-open): Make the error message from the
index 0f301dae505fdba582139f7b3f87724db2bbc1e0..895496a34f88ead21415a4a4072f416142d9d5a8 100644 (file)
@@ -5303,11 +5303,12 @@ The variable `selective-display' has a separate value for each buffer."
 (defvaralias 'indicate-unused-lines 'indicate-empty-lines)
 
 (defun toggle-truncate-lines (&optional arg)
-  "Toggle whether to fold or truncate long lines for the current buffer.
+  "Toggle truncating of long lines for the current buffer.
+When truncating is off, long lines are folded.
 With prefix argument ARG, truncate long lines if ARG is positive,
-otherwise don't truncate them.  Note that in side-by-side windows,
-this command has no effect if `truncate-partial-width-windows'
-is non-nil."
+otherwise fold them.  Note that in side-by-side windows, this
+command has no effect if `truncate-partial-width-windows' is
+non-nil."
   (interactive "P")
   (setq truncate-lines
        (if (null arg)