# HG changeset patch # User Miles Bader # Date 1053652952 0 # Node ID 1cb98e67d9b246d555fec4018bf810dcdcaa8ead # Parent 13c3a6c789ba3a3a01ee1fe241ddf6aa2a90ecc6 Fix mismatched @def/@end pairs (inadvertently nested?). diff -r 13c3a6c789ba -r 1cb98e67d9b2 lispref/strings.texi --- a/lispref/strings.texi Fri May 23 00:59:12 2003 +0000 +++ b/lispref/strings.texi Fri May 23 01:22:32 2003 +0000 @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Emacs Lisp Reference Manual. -@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999 +@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2003 @c Free Software Foundation, Inc. @c See the file elisp.texi for copying conditions. @setfilename ../info/strings @@ -269,10 +269,6 @@ If @var{separators} is @code{nil} (or omitted), the default is the value of @code{split-string-default-separators}. -@defvar split-string-default-separators -The default value of @var{separators} for @code{split-string}, initially -@samp{"[ \f\t\n\r\v]+"}. - As a special case, when @var{separators} is @code{nil} (or omitted), null strings are always omitted from the result. Thus: @@ -311,6 +307,11 @@ @end example @end defun +@defvar split-string-default-separators +The default value of @var{separators} for @code{split-string}, initially +@samp{"[ \f\t\n\r\v]+"}. +@end defvar + @node Modifying Strings @section Modifying Strings