aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2020-12-29 02:19:03 +0100
committerEli Zaretskii2021-01-02 10:21:55 +0200
commitec1e1f80e6fa6a219f78969e495c0d1022bd0750 (patch)
tree7c9e5991ca23fe9d107368350e84c705b1127420
parent90c782e92e76ec67bc7d2df152a508f782dd3b42 (diff)
downloademacs-ec1e1f80e6fa6a219f78969e495c0d1022bd0750.tar.gz
emacs-ec1e1f80e6fa6a219f78969e495c0d1022bd0750.zip
Add a reference between the Strings node and Search/Replace
* doc/lispref/strings.texi (Creating Strings): Mention string-replace/replace-regexp-in-string (bug#45516). (cherry picked from commit b9359d4183a1a6923122d3aa12b922ab89693354)
-rw-r--r--doc/lispref/strings.texi5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 0f0ce13dfe4..a033168a00d 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -120,7 +120,10 @@ character (i.e., an integer), @code{nil} otherwise.
120@cindex string creation 120@cindex string creation
121 121
122 The following functions create strings, either from scratch, or by 122 The following functions create strings, either from scratch, or by
123putting strings together, or by taking them apart. 123putting strings together, or by taking them apart. (For functions that
124create strings based on searching the contents of other strings (like
125@code{string-replace} and @code{replace-regexp-in-string}), see
126@ref{Search and Replace}.)
124 127
125@defun make-string count character &optional multibyte 128@defun make-string count character &optional multibyte
126This function returns a string made up of @var{count} repetitions of 129This function returns a string made up of @var{count} repetitions of