diff options
| -rw-r--r-- | lispref/strings.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index e722b74e54c..d7111eaa722 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi | |||
| @@ -293,7 +293,7 @@ null strings are always omitted from the result. Thus: | |||
| 293 | @result{} ("two" "words") | 293 | @result{} ("two" "words") |
| 294 | @end example | 294 | @end example |
| 295 | 295 | ||
| 296 | The result is not @samp{("" "two" "words" "")}, which would rarely be | 296 | The result is not @code{("" "two" "words" "")}, which would rarely be |
| 297 | useful. If you need such a result, use an explicit value for | 297 | useful. If you need such a result, use an explicit value for |
| 298 | @var{separators}: | 298 | @var{separators}: |
| 299 | 299 | ||
| @@ -355,7 +355,7 @@ practice: | |||
| 355 | 355 | ||
| 356 | @defvar split-string-default-separators | 356 | @defvar split-string-default-separators |
| 357 | The default value of @var{separators} for @code{split-string}. Its | 357 | The default value of @var{separators} for @code{split-string}. Its |
| 358 | usual value is @w{@samp{"[ \f\t\n\r\v]+"}}. | 358 | usual value is @w{@code{"[ \f\t\n\r\v]+"}}. |
| 359 | @end defvar | 359 | @end defvar |
| 360 | 360 | ||
| 361 | @node Modifying Strings | 361 | @node Modifying Strings |