summaryrefslogtreecommitdiff
path: root/lisp/net/dictionary.el
Commit message (Collapse)AuthorAgeFilesLines
...
* Dictionary now uses buttonTorsten Hilbrich2020-10-091-96/+67
| | | | | | | | | | | | | | | * net/lisp/dictionary-link.el: Removed now obsolete file * net/lisp/dictionary.el: Use insert-button and make-button * net/lisp/dictionary.el (dictionary-mode-map): Now defined using defvar I had to add a conversion function as parameter for the button 'action as I need to be able to pass nil data to my function. This is not possible with the regular button 'action function and the 'button-data value. The functionality of searching a link in all dictionaries has been removed for now. It might appear again once I have an idea how to implement it.
* Don't check for existence of deffaceTorsten Hilbrich2020-10-081-58/+47
| | | | | * lisp/net/dictionary.el: defface has been available in Emacs for quite some time now. No need to check it before using it.
* Dont't check coding-system-list for existenceTorsten Hilbrich2020-10-081-28/+23
| | | | | | * lisp/net/dictionary.el (dictionary-coding-systems-for-dictionaries): Don't check for coding-system-list before using it. It check no longer be necessary.
* Add :version tag to defcustom statementTorsten Hilbrich2020-10-081-20/+40
| | | | | | * lisp/net/dictionary.el: Add :version tag to all defcustom statements Suggested-By: Robert Pluim <rpluim@gmail.com>
* Removed some compability parts in dictionaryTorsten Hilbrich2020-10-081-109/+17
| | | | | | * lisp/net/dictionary.el: Use cl-lib, remove defface and defgroup checks, remove xemacs-related code * lisp/net/dictionary-link.el: Remove xemacs-related code
* Renamed link.elTorsten Hilbrich2020-10-081-47/+47
| | | | | | * lisp/net/link.el: Renamed to connection-link.el, also prefixing all functions with "dictionary-" prefix * lisp/net/dictionary.el: Adapt to renamed functions
* Renamed connection.elTorsten Hilbrich2020-10-081-14/+14
| | | | | | * lisp/net/connection.el: Renamed to dictionary-connection.el, also prefixing all functions with "dictionary-" prefix * lisp/net/dictionary.el: Adapt to renamed functions
* Importing dictionary moduleTorsten Hilbrich2020-10-081-0/+1367
* lisp/net: Adding files connection.el, link.el, dictionary.el, imported from https://github.com/myrkr/dictionary-el.git