aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixing cl deprecation warningsHEADmasterYuchen Pei2023-06-093-5/+5
|
* dictionary: Allow searching for region contentTorsten Hilbrich2020-10-011-1/+9
| | | | | | | If a region is active when calling dictionary-search it will present the region's contents as default. Suggested-By: Jean Louis <bugs@gnu.support>
* deb: Update compat level to 12Torsten Hilbrich2020-08-212-1/+1
| | | | No changes needed so far.
* Create version 1.11Torsten Hilbrich2019-11-115-5/+21
|
* Fix changes by package creationTorsten Hilbrich2019-11-112-0/+1
|
* dictionary: Move def for dictionary-balloon-help-extentTorsten Hilbrich2019-11-111-2/+2
| | | | | | | Fixes the followin warning: dictionary.el:1289:43:Warning: ‘make-variable-buffer-local’ not called at toplevel
* dictionary: Move definition of dictionary-replyTorsten Hilbrich2019-11-111-12/+12
| | | | | | Fixes the following warning: dictionary.el:567:11:Warning: macro ‘dictionary-reply’ defined too late
* Merge pull request #5 from plotnick/typosTorsten Hilbrich2019-11-081-3/+3
|\ | | | | Fix typos in package commentary
| * Fix typos in package commentaryAlex Plotnick2019-11-081-3/+3
|/
* Merge pull request #4 from amitramon/masterTorsten Hilbrich2019-04-031-1/+1
|\ | | | | Removed unnecessary quote in dictionary-word-definition-face
| * Removed unnecessary quote in dictionary-word-definition-faceAmit Ramon2019-04-031-1/+1
|/
* Merge pull request #3 from ucko/debian-864644Torsten Hilbrich2019-01-071-0/+11
|\ | | | | Support custom faces for definition bodies, preferably var-width.
| * Support custom faces for definition bodies, preferably var-width.Ben Wong2019-01-061-0/+11
|/ | | | | | | Define and use a new dictionary-word-definition-face, which defaults to "DejaVu Serif", if that font family is supported. If that font isn't available and the display type is "X", "Sans Serif" is used. Otherwise, the default fonts are used.
* add binds for M-tab and backtabMark Oteiza2014-07-181-0/+2
|
* name the dictionary buffer *Dictionary*Mark Oteiza2014-07-181-4/+4
| | | | also untabify the lines
* remove executable permissionsMark Oteiza2014-07-1818-0/+0
|
* Merge pull request #1 from purcell/packagingmyrkr2013-10-056-38/+43
|\ | | | | Place package metadata directly in .el files
| * Place package metadata directly in .el filesSteve Purcell2013-10-056-38/+43
|/ | | | | | | | 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`.
* Completed some information for package supportTorsten Hilbrich2013-10-056-2/+33
| | | | | - added package description files - added some basic in-place documentation
* Updated some email addressesTorsten Hilbrich2013-10-056-8/+5
|
* dictionary: Fix :type for dictionary-tooltip-dictionaryTorsten Hilbrich2013-08-101-1/+1
| | | | | | | | | | Using type string gives the warning "(mismatch)" when used with the default value of nil. Using a more specific type where nil stands for no dictionary and the alternative string type specifies the dictionary to use. This was suggested by Kevin Ryde in debian bug #719041.
* dictionary: Avoid reference to undefined dictionary-serverTorsten Hilbrich2013-07-051-0/+1
| | | | | Add a defvar so that the setter function for defcustom can set the variable without triggering a warning.
* dictionary: Replace mapcar with mapc where possibleTorsten Hilbrich2013-07-051-41/+41
| | | | | mapc doesn't return the result, mapcar does. So if the result of the call is not needed, prefer mapc here.
* dictionary: Use buffer-read-only variableTorsten Hilbrich2013-07-051-2/+2
| | | | | This fixes a warning about invalid use of interactive function toggle-read-only.
* dictionary: Avoid deprecation warning for process-kill-without-queryTorsten Hilbrich2013-07-051-2/+3
|
* connection: Use with-current-bufferTorsten Hilbrich2013-07-031-6/+3
| | | | | This is now prefered to using a combination of save-excursion and set-buffer.
* Added package description file.Torsten Hilbrich2013-07-031-0/+1
|
* Version 1.10Torsten Hilbrich2013-05-082-1/+8
|
* deb: Now using debhelperTorsten Hilbrich2013-05-085-54/+33
| | | | debmake is gone
* Adding to .gitignoreTorsten Hilbrich2013-05-081-0/+9
|
* word-definition: Fix creation of links to word definitionTorsten Hilbrich2013-05-081-11/+10
| | | | | | | | | | | match-beginning was called with 1 instead of 2 when calculating match-start. This is clearly wrong. Also small changes in the code, first calculate, then replace, this fixed a little problem with the link placement. Also fixing the documentation for the dictionary-color-support variable.
* Changes coming from debian packageReuben Thomas2013-05-082-1/+19
| | | | | | | | | | - Bypass custom-add-load to speed startup - dictionary-set-server-var which will be called after server related variables are set via customize - support for --exit-- as dictionary name meaning end of default search list Signed-off-by: Torsten Hilbrich <torsten.hilbrich@gmx.net>
* Removed some remaining CVS keywordsTorsten Hilbrich2013-05-085-6/+1
| | | | They are no longer useful now that the source is hold in Git.
* Made 1.9 releaseTorsten Hilbrich2012-07-024-7/+67
|
* Use read-string with default valueTorsten Hilbrich2011-08-271-2/+9
| | | | | | The use of initial value is deprecated and less user-friendly. Fix taken from Debian package.
* Encode dictionary name before useTorsten Hilbrich2011-08-271-4/+8
| | | | | | | | avoid invoking concat on a nominally multibyte dictionary name, to avoid double-encoding the search term when consulting a single dictionary. Fix taken from Debian package.
* Close connection to dictionary server on exitTorsten Hilbrich2011-08-271-0/+2
| | | | | | | Marks the connection not to query to user before closing the connection. Fix taken from Debian package.
* call make-local-hook only under XEmacsTorsten Hilbrich2011-08-271-1/+2
| | | | | | | GNU Emacs deprecated it back in version 21, and will retire it altogether in the upcoming version 24. Fix taken from the Debian package.
* Imported version 1.8.7 from tarballTorsten Hilbrich2011-08-2714-3/+34
| | | | | fixed decoding problem when selecting dictionary (problem reported by Kuno Strassmann)
* Imported version 1.8.6 from tarballTorsten Hilbrich2011-08-272-3/+29
| | | | | | | | added patch fixing the wrong display of dictionary description (provided by Sergei Pokrovsky) added dictionary-description-open-delimiter and dictionary-description-close-delimiter (suggested by Sergei Pokrovsky)
* Imported version 1.8.5 from tarballTorsten Hilbrich2011-08-274-338/+451
| | | | | | | added variable dictionary-use-single-buffer to allow selecting between single/multiple buffers for dictionary access added tooltip support for XEmacs based on balloon-help
* Imported version 1.8.4 from tarballTorsten Hilbrich2011-08-2710-200/+18
| | | | install-pkg was missing in the last tarball
* Imported version 1.8.3 from tarballTorsten Hilbrich2011-08-274-26/+13
| | | | Fixed multiple defined function in dictionary.el
* Imported version 1.8.2 from tarballTorsten Hilbrich2011-08-2713-28/+192
| | | | fixed Makefile
* Imported version 1.8.1 from tarballTorsten Hilbrich2011-08-275-87/+75
|
* Imported version 1.8 from tarballTorsten Hilbrich2011-08-2714-937/+50
| | | | added search for similiar words when the searched word is not found
* Imported version 1.7.4 from tarballTorsten Hilbrich2011-08-2718-22/+1052
| | | | | | | | | | | | dictionary.el (dictionary-do-matching): removed quotes around dictionary name and match strategy dictionary.el (dictionary-do-search): removed quotes around dictionary name dictionary.el (dictionary-display-more-info): removed quotes around dictionary name. This problem (occurring with jdictd) was reported by E C Vijil
* Imported version 1.7.3 from tarballTorsten Hilbrich2011-08-273-16/+57
| | | | | | dictionary.el (dictionary-default-popup-strategy): added this variable and changed dictionary-popup-matching-words to use this as matching strategy (suggested by Renaud Pons)
* Imported version 1.7.2 from tarballTorsten Hilbrich2011-08-273-11/+28
| | | | | link.el (link-initialize-keymap): fixed keybinding bug (reported by David A. Panariti)
* Imported version 1.7.1 from tarballTorsten Hilbrich2011-08-273-26/+36
| | | | | Fixed bug in dictionary-coding-system, the detection of non-mule Emacsen was not correct (patch submitted by Robert Pluim)