summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2011-01-22 20:12:25 -0500
committerChong Yidong <cyd@stupidchicken.com>2011-01-22 20:12:25 -0500
commit511c005cb1180cb1fe0804092ac1aa6211d68484 (patch)
treea04a07cc723b670d12d549e81d9ea09aef850d46
parent8fc3925faa27187b3c1779064e005b51e1aa775c (diff)
downloademacs-511c005cb1180cb1fe0804092ac1aa6211d68484.tar.gz
Remove outdated paragraph from Lisp manual (Bug#7780).
* doc/lispref/searching.texi (Regexp Special): Remove outdated discussion of character sets.
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/searching.texi9
2 files changed, 5 insertions, 9 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b0c80eba2f9..865594de371 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-23 Chong Yidong <cyd@stupidchicken.com>
+
+ * searching.texi (Regexp Special): Remove outdated discussion of
+ character sets (Bug#7780).
+
2011-01-22 Chong Yidong <cyd@stupidchicken.com>
* frames.texi (Pop-Up Menus): Document where menu title comes
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index ee74389df88..360ee1e9ae8 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -386,15 +386,6 @@ matches both @samp{]} and @samp{-}.
To include @samp{^} in a character alternative, put it anywhere but at
the beginning.
-The beginning and end of a range of multibyte characters must be in
-the same character set (@pxref{Character Sets}). Thus,
-@code{"[\x8e0-\x97c]"} is invalid because character 0x8e0 (@samp{a}
-with grave accent) is in the Emacs character set for Latin-1 but the
-character 0x97c (@samp{u} with diaeresis) is in the Emacs character
-set for Latin-2. (We use Lisp string syntax to write that example,
-and a few others in the next few paragraphs, in order to include hex
-escape sequences in them.)
-
If a range starts with a unibyte character @var{c} and ends with a
multibyte character @var{c2}, the range is divided into two parts: one
is @samp{@var{c}..?\377}, the other is @samp{@var{c1}..@var{c2}}, where