emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/strings.texi


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lispref/strings.texi
Date: Wed, 28 May 2003 07:35:48 -0400

Index: emacs/lispref/strings.texi
diff -c emacs/lispref/strings.texi:1.25 emacs/lispref/strings.texi:1.26
*** emacs/lispref/strings.texi:1.25     Thu May 22 21:22:32 2003
--- emacs/lispref/strings.texi  Wed May 28 07:35:48 2003
***************
*** 260,271 ****
  @end defun
  
  @defun split-string string separators omit-nulls
! This function splits @var{string} into substrings at matches for the regular
! expression @var{separators}.  Each match for @var{separators} defines a
! splitting point; the substrings between the splitting points are made
! into a list, which is the value returned by @code{split-string}.  If
! @var{omit-nulls} is @code{t}, null strings will be removed from the
! result list.  Otherwise, null strings are left in the result.
  If @var{separators} is @code{nil} (or omitted),
  the default is the value of @code{split-string-default-separators}.
  
--- 260,277 ----
  @end defun
  
  @defun split-string string separators omit-nulls
! This function splits @var{string} into substrings at matches for the
! regular expression @var{separators}.  Each match for @var{separators}
! defines a splitting point; the substrings between the splitting points
! are made into a list, which is the value returned by
! @code{split-string}.
! 
! If @var{omit-nulls} is @code{nil}, the result contains null strings
! whenever there are two consecutive matches for @var{separators}, or a
! match is adjacent to the beginning or end of @var{string}.  If
! @var{omit-nulls} is @code{t}, these null strings are omitted from the
! result list.
! 
  If @var{separators} is @code{nil} (or omitted),
  the default is the value of @code{split-string-default-separators}.
  




reply via email to

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