diff options
| -rw-r--r-- | src/doc.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -721,7 +721,7 @@ into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and \\=\\=\\=` puts \ | |||
| 721 | output. | 721 | output. |
| 722 | 722 | ||
| 723 | Return the original STRING if no substitutions are made. | 723 | Return the original STRING if no substitutions are made. |
| 724 | Otherwise, return a new string. */) | 724 | Otherwise, return a new string (without any text properties). */) |
| 725 | (Lisp_Object string) | 725 | (Lisp_Object string) |
| 726 | { | 726 | { |
| 727 | char *buf; | 727 | char *buf; |
| @@ -984,7 +984,7 @@ Otherwise, return a new string. */) | |||
| 984 | { | 984 | { |
| 985 | /* Nothing has changed other than quoting, so copy the string’s | 985 | /* Nothing has changed other than quoting, so copy the string’s |
| 986 | text properties. FIXME: Text properties should survive other | 986 | text properties. FIXME: Text properties should survive other |
| 987 | changes too. */ | 987 | changes too; see bug#17052. */ |
| 988 | INTERVAL interval_copy = copy_intervals (string_intervals (string), | 988 | INTERVAL interval_copy = copy_intervals (string_intervals (string), |
| 989 | 0, SCHARS (string)); | 989 | 0, SCHARS (string)); |
| 990 | if (interval_copy) | 990 | if (interval_copy) |