comparison lispref/positions.texi @ 90128:13796b0653c7

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-29 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 192-205) - Update from CVS - Use gdb-ui breakpoint faces on ttys too - Tweak gdb-ui breakpoint faces - Tweak info/.arch-inventory to identify info/.cvsignore as source - Clean up gdb-ui breakpoint faces
author Miles Bader <miles@gnu.org>
date Thu, 24 Mar 2005 18:41:26 +0000
parents 3ebd9bdb4fe5 2d8b73599b7b
children 4da4a09e8b1b
comparison
equal deleted inserted replaced
90127:30ad2795fdab 90128:13796b0653c7
768 The argument @var{character-set} is a string, like the inside of a 768 The argument @var{character-set} is a string, like the inside of a
769 @samp{[@dots{}]} in a regular expression except that @samp{]} does not 769 @samp{[@dots{}]} in a regular expression except that @samp{]} does not
770 terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}. 770 terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}.
771 Thus, @code{"a-zA-Z"} skips over all letters, stopping before the 771 Thus, @code{"a-zA-Z"} skips over all letters, stopping before the
772 first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before 772 first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before
773 the first letter. @xref{Regular Expressions}. 773 the first letter. See @xref{Regular Expressions}. Character classes
774 can also be used, e.g. @code{"[:alnum:]"}. See @pxref{Char Classes}.
774 775
775 If @var{limit} is supplied (it must be a number or a marker), it 776 If @var{limit} is supplied (it must be a number or a marker), it
776 specifies the maximum position in the buffer that point can be skipped 777 specifies the maximum position in the buffer that point can be skipped
777 to. Point will stop at or before @var{limit}. 778 to. Point will stop at or before @var{limit}.
778 779