aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olson2008-02-11 00:02:41 +0000
committerMichael Olson2008-02-11 00:02:41 +0000
commit124ce267f7066c468d412d6aa3a4f9c72c933306 (patch)
treeabff6d6af9208e2e2988e7a106f3cf52f695cf33
parentbe16d955c87a73ec4d585f5d001971f90bcccd17 (diff)
downloademacs-124ce267f7066c468d412d6aa3a4f9c72c933306.tar.gz
emacs-124ce267f7066c468d412d6aa3a4f9c72c933306.zip
EasyPG: Remove epg-package-info and epa-setup
-rw-r--r--lisp/epa-setup.el40
-rw-r--r--lisp/epg-package-info.el38
2 files changed, 0 insertions, 78 deletions
diff --git a/lisp/epa-setup.el b/lisp/epa-setup.el
deleted file mode 100644
index 50e5ce63c30..00000000000
--- a/lisp/epa-setup.el
+++ /dev/null
@@ -1,40 +0,0 @@
1;;; epa-setup.el --- setup routine for the EasyPG Assistant.
2;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
3
4;; Author: Daiki Ueno <ueno@unixuser.org>
5;; Keywords: PGP, GnuPG
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 3, or (at your option)
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22;; Boston, MA 02110-1301, USA.
23
24;;; Code:
25
26(autoload 'epa-list-keys "epa")
27
28(autoload 'epa-dired-mode-hook "epa-dired")
29(add-hook 'dired-mode-hook 'epa-dired-mode-hook)
30
31(require 'epa-file)
32(epa-file-enable)
33
34(autoload 'epa-mail-mode "epa-mail")
35(add-hook 'mail-mode-hook 'epa-mail-mode)
36
37(provide 'epa-setup)
38
39;; arch-tag: 81bdf787-6f97-4c7a-b2bb-172dfef852c4
40;;; epa-setup.el ends here
diff --git a/lisp/epg-package-info.el b/lisp/epg-package-info.el
deleted file mode 100644
index d00e7d6bc95..00000000000
--- a/lisp/epg-package-info.el
+++ /dev/null
@@ -1,38 +0,0 @@
1;;; epg-package-info.el --- package information about EasyPG
2;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
3
4;; Author: Daiki Ueno <ueno@unixuser.org>
5;; Keywords: PGP, GnuPG
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 3, or (at your option)
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22;; Boston, MA 02110-1301, USA.
23
24;;; Code:
25
26(defconst epg-package-name "epg"
27 "Name of this package.")
28
29(defconst epg-version-number "1.0.0"
30 "Version number of this package.")
31
32(defconst epg-bug-report-address "ueno@unixuser.org"
33 "Report bugs to this address.")
34
35(provide 'epg-package-info)
36
37;; arch-tag: 3dcbed1c-9733-47ce-bd02-cbe70def6df4
38;;; epg-package-info.el ends here