diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:40:34 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:40:34 +1100 |
commit | 9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb (patch) | |
tree | 2ee4a813f66d95e3bd6d960229c9f26c4fbbd199 /lisp/gnus/gnus-msg.el | |
parent | 9bcefcf0b0bcb860f432299c8e6cf109d07ee8ef (diff) | |
download | emacs-9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb.tar.gz |
Remove several gnus-util compat functions
* lisp/gnus/gnus-util.el (gnus-set-process-query-on-exit-flag): Remove.
(gnus-read-shell-command): Remove.
(gnus-match-substitute-replacement): Remove.
(gnus-string-match-p): Remove.
(gnus-string-prefix-p): Remove.
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 43a496942e3..e2b8dcc51e4 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1904,10 +1904,10 @@ this is a reply." (cond ((stringp value) (if (and matched-string - (gnus-string-match-p "\\\\[&[:digit:]]" value) + (string-match-p "\\\\[&[:digit:]]" value) (match-beginning 1)) - (gnus-match-substitute-replacement value nil nil - matched-string) + (match-substitute-replacement value nil nil + matched-string) value)) ((or (symbolp value) (functionp value)) |