Skip to content

Commit

Permalink
doc/lispref/text.texi (Substitution): Add subst-char-in-string
Browse files Browse the repository at this point in the history
* doc/lispref/text.texi (Substitution): Document
subst-char-in-string (bug#49420).
  • Loading branch information
fgunbin authored and larsmagne committed Jul 10, 2021
1 parent da7dbfd commit b7a495f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doc/lispref/text.texi
Expand Up @@ -4428,6 +4428,16 @@ ThXs Xs the contents of the buffer before.
@end example
@end defun


@defun subst-char-in-string fromchar tochar string &optional inplace
@cindex replace characters in string
This function replaces all occurences of the character @var{fromchar}
with @var{tochar} in @var{string}. Unless @var{inplace} is non-nil,
substitution occurs in a copy of @var{string}. In any case, the
function returns the resulting string. Both characters must have the
same multi-byte length.
@end defun

@deffn Command translate-region start end table
This function applies a translation table to the characters in the
buffer between positions @var{start} and @var{end}.
Expand Down

0 comments on commit b7a495f

Please sign in to comment.