diff options
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 |