]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't break example string between 2 lines (bug#19257)
authorEli Zaretskii <eliz@gnu.org>
Thu, 11 Dec 2014 18:27:00 +0000 (20:27 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 11 Dec 2014 18:27:00 +0000 (20:27 +0200)
 doc/lispref/text.texi (Comparing Text): Prevent a text string from being
 broken between 2 lines by using @w{}.

doc/lispref/ChangeLog
doc/lispref/text.texi

index 9f8461c154a08ac3e37f27bfdcf4e85c2c0e08bf..dcab3bac6ed0cacbb7e38eca366dad3fcb32e84e 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-11  Eli Zaretskii  <eliz@gnu.org>
+
+       * text.texi (Comparing Text): Prevent a text string from being
+       broken between 2 lines.  (Bug#19257)
+
 2014-11-19  Paul Eggert  <eggert@cs.ucla.edu>
 
        Lessen focus on ChangeLog files, as opposed to change log entries.
index 6665cc3e673791393b4bf16b7adef5f5d624bd87..09dec5671f9cfaa2575075db8174d2090f358e48 100644 (file)
@@ -343,10 +343,10 @@ This function ignores case when comparing characters
 if @code{case-fold-search} is non-@code{nil}.  It always ignores
 text properties.
 
-Suppose the current buffer contains the text @samp{foobarbar
-haha!rara!}; then in this example the two substrings are @samp{rbar }
-and @samp{rara!}.  The value is 2 because the first substring is greater
-at the second character.
+Suppose you have the text @w{@samp{foobarbar haha!rara!}} in the
+current buffer; then in this example the two substrings are @samp{rbar
+} and @samp{rara!}.  The value is 2 because the first substring is
+greater at the second character.
 
 @example
 (compare-buffer-substrings nil 6 11 nil 16 21)