diff options
-rw-r--r-- | connection-pkg.el | 3 | ||||
-rwxr-xr-x | connection.el | 5 | ||||
-rw-r--r-- | dictionary-pkg.el | 6 | ||||
-rwxr-xr-x | dictionary.el | 10 | ||||
-rw-r--r-- | link-pkg.el | 4 | ||||
-rwxr-xr-x | link.el | 7 |
6 files changed, 33 insertions, 2 deletions
diff --git a/connection-pkg.el b/connection-pkg.el new file mode 100644 index 0000000..75eb290 --- /dev/null +++ b/connection-pkg.el @@ -0,0 +1,3 @@ +(define-package "connection" + "1.10" + "TCP-based client connetion") diff --git a/connection.el b/connection.el index f5bb2c7..04cdcf9 100755 --- a/connection.el +++ b/connection.el @@ -18,6 +18,11 @@ ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. +;; connection allows to handle TCP-based connections in client mode +;; where text-based information are exchanged. There is special +;; support for handling CR LF (and the usual CR LF . CR LF +;; terminater). + (eval-when-compile (require 'cl)) diff --git a/dictionary-pkg.el b/dictionary-pkg.el index b380081..86a7630 100644 --- a/dictionary-pkg.el +++ b/dictionary-pkg.el @@ -1 +1,5 @@ -(define-package "dictionary" "1.10" "client for rfc2229 dictionary servers") +(define-package "dictionary" + "1.10" + "client for rfc2229 dictionary servers" + '((connection "1.10") + (link "1.10"))) diff --git a/dictionary.el b/dictionary.el index 04a47e9..a8a4a2c 100755 --- a/dictionary.el +++ b/dictionary.el @@ -18,6 +18,16 @@ ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. +;; dictionary allows you to interact with dictionary servers. Use M-x +;; customize-group dictioanry to modify all user settings. +;; +;; Main functions for interaction are: +;; dictionary - opens a new dictionary buffer +;; dictionary-search - search for the definition of a word +;; +;; You can find more information in the README file of the gibhub +;; repository https://github.com/myrkr/dictionary-el + (eval-when-compile (require 'cl)) diff --git a/link-pkg.el b/link-pkg.el new file mode 100644 index 0000000..75f15ad --- /dev/null +++ b/link-pkg.el @@ -0,0 +1,4 @@ +(define-package "link" + "1.10" + "hypertext links in text buffers") + @@ -26,7 +26,12 @@ ;; pressing return or clicking the button2. ;; Which each link a function and some data are associated. Upon -;; clicking the function is called with the data as only argument. +;; clicking the function is called with the data as only +;; argument. Both the function and the data are stored in text +;; properties. +;; +;; link-create-link - insert a new link for the text in the given range +;; link-initialize-keymap - install the keybinding for selecting links (eval-when-compile (require 'cl)) |