mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
mml2015.el (mml2015-use): Replace string-match-p with string-match for old Emacsen.
This commit is contained in:
parent
887d14add7
commit
34d0a92369
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2011-06-30 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* mml2015.el (mml2015-use): Replace string-match-p with string-match
|
||||
for old Emacsen.
|
||||
|
||||
2011-06-30 Daiki Ueno <ueno@unixuser.org>
|
||||
|
||||
* mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
|
||||
|
|
|
|||
|
|
@ -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))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue