diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-27 00:20:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-09-27 00:20:03 +0200 |
commit | 13e75e620b84fda6c951005bf6c80aea854ee58a (patch) | |
tree | 5e4198047df1a5f1e4bcde3540745b89153f3d57 /doc/misc | |
parent | 53cf5936c19a6c7352483323666c3915de6f7746 (diff) | |
download | emacs-13e75e620b84fda6c951005bf6c80aea854ee58a.tar.gz emacs-13e75e620b84fda6c951005bf6c80aea854ee58a.tar.bz2 emacs-13e75e620b84fda6c951005bf6c80aea854ee58a.zip |
Fix gnus-faq example
* doc/misc/gnus-faq.texi (FAQ 6-2): replace-in-string was the XEmacs
name for the function.
Diffstat (limited to 'doc/misc')
-rw-r--r-- | doc/misc/gnus-faq.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi index 9c1d2d0160a..6e2aedae716 100644 --- a/doc/misc/gnus-faq.texi +++ b/doc/misc/gnus-faq.texi @@ -1757,7 +1757,7 @@ more then one article." (let ((archive-name (format "nnml:1.%s" - (replace-in-string gnus-newsgroup-name "^.*:" "")))) + (replace-regexp-in-string "^.*:" "" gnus-newsgroup-name)))) (gnus-summary-copy-article n archive-name))) @end example @noindent |