diff options
| author | Steve Purcell <steve@sanityinc.com> | 2013-10-05 10:21:30 +0100 | 
|---|---|---|
| committer | Steve Purcell <steve@sanityinc.com> | 2013-10-05 10:21:30 +0100 | 
| commit | 680cbd94f87a27edf43b1843c3b0927bba01d078 (patch) | |
| tree | 67a00c4c73cdc3f942c060e9a4cee9e496a1b720 /dictionary.el | |
| parent | 41f2e0b385ac5f63e6cbda2c8978c291934efc6f (diff) | |
Place package metadata directly in .el files
In the case of single-file packages like this, a -pkg.el is unnecessary.
This commit therefore removes the -pkg.el files and puts the info
directly in the .el files. It also, therefore, adjusts the formatting of
those files slightly in order to be readable by `package-buffer-info`.
Diffstat (limited to 'dictionary.el')
| -rwxr-xr-x | dictionary.el | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/dictionary.el b/dictionary.el index a8a4a2c..33f2ce4 100755 --- a/dictionary.el +++ b/dictionary.el @@ -1,7 +1,9 @@ -;; dictionary.el -- an interface to RFC 2229 dictionary server +;;; dictionary.el --- Client for rfc2229 dictionary servers  ;; Author: Torsten Hilbrich <torsten.hilbrich@gmx.net>  ;; Keywords: interface, dictionary +;; Version: 1.10 +;; Package-Requires: ((connection "1.10") (link "1.10"))  ;; This file is free software; you can redistribute it and/or modify  ;; it under the terms of the GNU General Public License as published by @@ -18,6 +20,8 @@  ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,  ;; Boston, MA 02111-1307, USA. +;;; Commentary: +  ;; dictionary allows you to interact with dictionary servers. Use M-x  ;; customize-group dictioanry to modify all user settings.  ;; @@ -28,6 +32,8 @@  ;; You can find more information in the README file of the gibhub  ;; repository https://github.com/myrkr/dictionary-el +;;; Code: +  (eval-when-compile    (require 'cl)) @@ -1337,3 +1343,4 @@ It presents the word at point as default input and allows editing it."  (provide 'dictionary) +;;; dictionary.el ends here | 
