1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

Don't break example string between 2 lines (bug#19257)

doc/lispref/text.texi (Comparing Text): Prevent a text string from being
 broken between 2 lines by using @w{}.
This commit is contained in:
Eli Zaretskii 2014-12-11 20:27:00 +02:00
parent 75b4857ef0
commit d76b9b2a21
2 changed files with 9 additions and 4 deletions

View 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.

View 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)