diff options
| author | Richard M. Stallman | 2007-10-31 04:08:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-31 04:08:29 +0000 |
| commit | 2c3a09b1ac5070ffe0371c7ca9ea1bcf4f462237 (patch) | |
| tree | 16c0f2bec901d6689a6071850f3f233ab60efef7 | |
| parent | 9a56b44037a4048d7b424c8ed423521f4cdaca2b (diff) | |
| download | emacs-2c3a09b1ac5070ffe0371c7ca9ea1bcf4f462237.tar.gz emacs-2c3a09b1ac5070ffe0371c7ca9ea1bcf4f462237.zip | |
(Creating Strings): Null strings from concat not unique.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/strings.texi | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 282fa19bfa1..5f52b30d60a 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-10-31 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * strings.texi (Creating Strings): Null strings from concat not unique. | ||
| 4 | |||
| 1 | 2007-10-26 Richard Stallman <rms@gnu.org> | 5 | 2007-10-26 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * objects.texi (Equality Predicates): Null strings are uniquified. | 7 | * objects.texi (Equality Predicates): Null strings are uniquified. |
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index b2f32ad02d6..f119b3ab84b 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -259,7 +259,8 @@ returns an empty string. | |||
| 259 | 259 | ||
| 260 | @noindent | 260 | @noindent |
| 261 | The @code{concat} function always constructs a new string that is | 261 | The @code{concat} function always constructs a new string that is |
| 262 | not @code{eq} to any existing string. | 262 | not @code{eq} to any existing string, except when the result is empty |
| 263 | (since empty strings are canonicalized to save space). | ||
| 263 | 264 | ||
| 264 | In Emacs versions before 21, when an argument was an integer (not a | 265 | In Emacs versions before 21, when an argument was an integer (not a |
| 265 | sequence of integers), it was converted to a string of digits making up | 266 | sequence of integers), it was converted to a string of digits making up |