aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-20 19:54:28 +0000
committerEli Zaretskii2008-10-20 19:54:28 +0000
commitfd6f900c21e90d5dd6661e7b29f5ffe2c049400c (patch)
tree44a0cd26bc3a4dfe980335ffd2145b70f2368db4 /doc
parenta873ee3dea608126b079c08788855cd5b8ac3701 (diff)
downloademacs-fd6f900c21e90d5dd6661e7b29f5ffe2c049400c.tar.gz
emacs-fd6f900c21e90d5dd6661e7b29f5ffe2c049400c.zip
(Creating Strings): Add xrefs to `split-string-and-unquote' and
`combine-and-quote-strings'.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog7
-rw-r--r--doc/lispref/strings.texi8
2 files changed, 14 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index ade2722c77a..4effa167368 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,10 @@
12008-10-20 Eli Zaretskii <eliz@gnu.org>
2
3 * processes.texi (Shell Arguments): Document `split-string-and-unquote'
4 and `combine-and-quote-strings'.
5
6 * strings.texi (Creating Strings): Add xrefs for them.
7
12008-10-19 Eli Zaretskii <eliz@gnu.org> 82008-10-19 Eli Zaretskii <eliz@gnu.org>
2 9
3 * elisp.texi (Top): Make descriptive text for "Reading File Names" 10 * elisp.texi (Top): Make descriptive text for "Reading File Names"
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 37c19fc4f3e..1b57e665388 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -272,7 +272,9 @@ printed form is with @code{format} (@pxref{Formatting Strings}) or
272For information about other concatenation functions, see the 272For information about other concatenation functions, see the
273description of @code{mapconcat} in @ref{Mapping Functions}, 273description of @code{mapconcat} in @ref{Mapping Functions},
274@code{vconcat} in @ref{Vector Functions}, and @code{append} in @ref{Building 274@code{vconcat} in @ref{Vector Functions}, and @code{append} in @ref{Building
275Lists}. 275Lists}. For concatenating individual command-line arguments into a
276string to be used as a shell command, see @ref{Shell Arguments,
277combine-and-quote-strings}.
276@end defun 278@end defun
277 279
278@defun split-string string &optional separators omit-nulls 280@defun split-string string &optional separators omit-nulls
@@ -357,6 +359,10 @@ practice:
357(split-string "ooo" "\\|o+" t) 359(split-string "ooo" "\\|o+" t)
358 @result{} ("o" "o" "o") 360 @result{} ("o" "o" "o")
359@end example 361@end example
362
363If you need to split a string that is a shell command, where
364individual arguments could be quoted, see @ref{Shell Arguments,
365split-string-and-unquote}.
360@end defun 366@end defun
361 367
362@defvar split-string-default-separators 368@defvar split-string-default-separators