diff options
| author | Chong Yidong | 2010-06-02 13:14:01 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-06-02 13:14:01 -0400 |
| commit | 2c3a3c1d035e06250db54fb17ee7aec6b7c2c70a (patch) | |
| tree | db82dc5d9bd6f9932dbe9e75ad70110a0320be42 | |
| parent | dbe82b27a21babf8872ce67a7a9b50ac81e11d6b (diff) | |
| download | emacs-2c3a3c1d035e06250db54fb17ee7aec6b7c2c70a.tar.gz emacs-2c3a3c1d035e06250db54fb17ee7aec6b7c2c70a.zip | |
searching.texi (Regexp Special): Replace "octal 377" with "#o377" (Bug#6283).
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 17 |
2 files changed, 14 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ad8d1222827..b871c442804 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-06-02 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Special): Replace "octal 377" | ||
| 4 | with "#o377" (Bug#6283). | ||
| 5 | |||
| 1 | 2010-05-30 Juanma Barranquero <lekktu@gmail.com> | 6 | 2010-05-30 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * minibuf.texi (Basic Completion): Add missing "@end defun". | 8 | * minibuf.texi (Basic Completion): Add missing "@end defun". |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 48780d0a348..d1e8c549679 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -400,14 +400,15 @@ is @samp{@var{c}..?\377}, the other is @samp{@var{c1}..@var{c2}}, where | |||
| 400 | @var{c1} is the first character of the charset to which @var{c2} | 400 | @var{c1} is the first character of the charset to which @var{c2} |
| 401 | belongs. | 401 | belongs. |
| 402 | 402 | ||
| 403 | You cannot always match all non-@acronym{ASCII} characters with the regular | 403 | You cannot always match all non-@acronym{ASCII} characters with the |
| 404 | expression @code{"[\200-\377]"}. This works when searching a unibyte | 404 | regular expression @code{"[\200-\377]"}. This works when searching a |
| 405 | buffer or string (@pxref{Text Representations}), but not in a multibyte | 405 | unibyte buffer or string (@pxref{Text Representations}), but not in a |
| 406 | buffer or string, because many non-@acronym{ASCII} characters have codes | 406 | multibyte buffer or string, because many non-@acronym{ASCII} |
| 407 | above octal 0377. However, the regular expression @code{"[^\000-\177]"} | 407 | characters have codes above @code{#o377}. However, the regular |
| 408 | does match all non-@acronym{ASCII} characters (see below regarding @samp{^}), | 408 | expression @code{"[^\000-\177]"} does match all non-@acronym{ASCII} |
| 409 | in both multibyte and unibyte representations, because only the | 409 | characters (see below regarding @samp{^}), in both multibyte and |
| 410 | @acronym{ASCII} characters are excluded. | 410 | unibyte representations, because only the @acronym{ASCII} characters |
| 411 | are excluded. | ||
| 411 | 412 | ||
| 412 | A character alternative can also specify named | 413 | A character alternative can also specify named |
| 413 | character classes (@pxref{Char Classes}). This is a POSIX feature whose | 414 | character classes (@pxref{Char Classes}). This is a POSIX feature whose |