diff options
-rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
-rw-r--r-- | doc/lispref/strings.texi | 7 | ||||
-rw-r--r-- | etc/NEWS | 4 |
3 files changed, 15 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 77468f562c6..1248ea15bcd 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2012-03-22 Glenn Morris <rgm@gnu.org> + + * strings.texi (Text Comparison): Mention string-prefix-p. + 2012-03-21 Chong Yidong <cyd@gnu.org> * display.texi (The Echo Area): Add xref to Output Streams. diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 64d0986493a..7813283ade5 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -508,6 +508,13 @@ are used. @code{string-lessp} is another name for @code{string<}. @end defun +@defun string-prefix-p string1 string2 &optional ignore-case +This function returns non-@code{nil} if @var{string1} is a prefix of +@var{string2}; i.e., if @var{string2} starts with @var{string1}. If +the optional argument @var{ignore-case} is non-@code{nil}, the +comparison ignores case differences. +@end defun + @defun compare-strings string1 start1 end1 string2 start2 end2 &optional ignore-case This function compares the specified part of @var{string1} with the specified part of @var{string2}. The specified part of @var{string1} @@ -1548,6 +1548,10 @@ inherits from multiple maps, eg: (set-keymap-parent newmap (make-composed-keymap othermap parent)) +++ +** New function `string-prefix-p'. +(This was actually added in Emacs 23.2 but was not advertised at the time.) + ++++ ** New reader macro ## that stands for the empty symbol. This means that the empty symbol can now be read back. Also, #: by itself (when not immediately followed by a possible symbol character) stands for |