diff options
| author | Eli Zaretskii | 2008-10-20 19:54:28 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-20 19:54:28 +0000 |
| commit | fd6f900c21e90d5dd6661e7b29f5ffe2c049400c (patch) | |
| tree | 44a0cd26bc3a4dfe980335ffd2145b70f2368db4 /doc | |
| parent | a873ee3dea608126b079c08788855cd5b8ac3701 (diff) | |
| download | emacs-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/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/lispref/strings.texi | 8 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-10-19 Eli Zaretskii <eliz@gnu.org> | 8 | 2008-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 | |||
| 272 | For information about other concatenation functions, see the | 272 | For information about other concatenation functions, see the |
| 273 | description of @code{mapconcat} in @ref{Mapping Functions}, | 273 | description 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 |
| 275 | Lists}. | 275 | Lists}. For concatenating individual command-line arguments into a |
| 276 | string to be used as a shell command, see @ref{Shell Arguments, | ||
| 277 | combine-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 | |||
| 363 | If you need to split a string that is a shell command, where | ||
| 364 | individual arguments could be quoted, see @ref{Shell Arguments, | ||
| 365 | split-string-and-unquote}. | ||
| 360 | @end defun | 366 | @end defun |
| 361 | 367 | ||
| 362 | @defvar split-string-default-separators | 368 | @defvar split-string-default-separators |