Skip to content

Commit

Permalink
Merge pull request hayamiz#125 from itorres/master
Browse files Browse the repository at this point in the history
Also look for gpg2 for capable-of-encryption-p
  • Loading branch information
cvmat authored Mar 12, 2017
2 parents 547aa1c + 6e5208b commit 63c96fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twittering-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -3859,7 +3859,7 @@ like following:

(defun twittering-capable-of-encryption-p ()
(and (or (require 'epa nil t) (require 'alpaca nil t))
(executable-find "gpg")))
(or (executable-find "gpg") (executable-find "gpg2"))))

(eval-when-compile
(require 'epa nil t)
Expand Down

0 comments on commit 63c96fb

Please sign in to comment.