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/mml-sec.el | |
parent | 9bcefcf0b0bcb860f432299c8e6cf109d07ee8ef (diff) | |
download | emacs-9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb.tar.gz emacs-9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb.tar.bz2 emacs-9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb.zip |
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/mml-sec.el')
-rw-r--r-- | lisp/gnus/mml-sec.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el index 4744187994a..bc7c0ac5210 100644 --- a/lisp/gnus/mml-sec.el +++ b/lisp/gnus/mml-sec.el @@ -704,9 +704,9 @@ be present in the keyring." ;; In contrast, signing requires secret key. (mml-secure-secret-key-exists-p context subkey)) (or (not fingerprint) - (gnus-string-match-p (concat fingerprint "$") fpr) - (gnus-string-match-p (concat fingerprint "$") - (epg-sub-key-fingerprint subkey)))) + (string-match-p (concat fingerprint "$") fpr) + (string-match-p (concat fingerprint "$") + (epg-sub-key-fingerprint subkey)))) (throw 'break t))))))) (defun mml-secure-find-usable-keys (context name usage &optional justone) |