summaryrefslogtreecommitdiff
path: root/lisp/gnus/mml2015.el
diff options
context:
space:
mode:
authorKatsumi Yamaoka <yamaoka@jpl.org>2011-06-30 23:27:10 +0000
committerKatsumi Yamaoka <yamaoka@jpl.org>2011-06-30 23:27:10 +0000
commit34d0a92369bca068847db5576988d461f46e1351 (patch)
treeab3a25c26714e6e605be8ce63715792936358f07 /lisp/gnus/mml2015.el
parent887d14add7ac21ae466f37208f347f860db33765 (diff)
downloademacs-34d0a92369bca068847db5576988d461f46e1351.tar.gz
mml2015.el (mml2015-use): Replace string-match-p with string-match for old Emacsen.
Diffstat (limited to 'lisp/gnus/mml2015.el')
-rw-r--r--lisp/gnus/mml2015.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el
index d7070effde5..7d8a4119c0e 100644
--- a/lisp/gnus/mml2015.el
+++ b/lisp/gnus/mml2015.el
@@ -59,8 +59,8 @@
;; Don't load PGG if it is marked as obsolete
;; (Emacs 24).
(when (and abs-file
- (not (string-match-p "/obsolete/[^/]*\\'"
- abs-file)))
+ (not (string-match "/obsolete/[^/]*\\'"
+ abs-file)))
(ignore-errors (require 'pgg))
(and (fboundp 'pgg-sign-region)
'pgg))))