emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99830: searching.texi (Regexp Spe


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99830: searching.texi (Regexp Special): Replace "octal 377" with "#o377" (Bug#6283).
Date: Wed, 02 Jun 2010 13:14:01 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99830
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Wed 2010-06-02 13:14:01 -0400
message:
  searching.texi (Regexp Special): Replace "octal 377" with "#o377" (Bug#6283).
modified:
  doc/lispref/ChangeLog
  doc/lispref/searching.texi
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2010-05-30 22:50:31 +0000
+++ b/doc/lispref/ChangeLog     2010-06-02 17:14:01 +0000
@@ -1,3 +1,8 @@
+2010-06-02  Chong Yidong  <address@hidden>
+
+       * searching.texi (Regexp Special): Replace "octal 377"
+       with "#o377" (Bug#6283).
+
 2010-05-30  Juanma Barranquero  <address@hidden>
 
        * minibuf.texi (Basic Completion): Add missing "@end defun".

=== modified file 'doc/lispref/searching.texi'
--- a/doc/lispref/searching.texi        2010-01-13 08:35:10 +0000
+++ b/doc/lispref/searching.texi        2010-06-02 17:14:01 +0000
@@ -400,14 +400,15 @@
 @var{c1} is the first character of the charset to which @var{c2}
 belongs.
 
-You cannot always match all address@hidden characters with the regular
-expression @code{"[\200-\377]"}.  This works when searching a unibyte
-buffer or string (@pxref{Text Representations}), but not in a multibyte
-buffer or string, because many address@hidden characters have codes
-above octal 0377.  However, the regular expression @code{"[^\000-\177]"}
-does match all address@hidden characters (see below regarding @samp{^}),
-in both multibyte and unibyte representations, because only the
address@hidden characters are excluded.
+You cannot always match all address@hidden characters with the
+regular expression @code{"[\200-\377]"}.  This works when searching a
+unibyte buffer or string (@pxref{Text Representations}), but not in a
+multibyte buffer or string, because many address@hidden
+characters have codes above @code{#o377}.  However, the regular
+expression @code{"[^\000-\177]"} does match all address@hidden
+characters (see below regarding @samp{^}), in both multibyte and
+unibyte representations, because only the @acronym{ASCII} characters
+are excluded.
 
 A character alternative can also specify named
 character classes (@pxref{Char Classes}).  This is a POSIX feature whose


reply via email to

[Prev in Thread] Current Thread [Next in Thread]