diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 43 |
1 files changed, 24 insertions, 19 deletions
@@ -56,7 +56,7 @@ custom.el file in the above GNU Emacs. Please update to the current version whenever possible. XEmacs 21 and Emacs 20 as well as Emacs 21 have been tested too. - * [5]Current version (1.5) of this package + * [5]Current version (1.5.1) of this package * [6]Version 1.4.1 of this package * [7]Version 1.3.3 of this package * [8]Version 1.2.1 of this package @@ -76,14 +76,14 @@ Unpacking the archive The package is distributed as tar.gz file. You unpack it using: -gzip -dc dictionary-1.5.tar.gz | tar xf - +gzip -dc dictionary-1.5.1.tar.gz | tar xf - or -tar -xzf dictionary-1.5.tar.gz +tar -xzf dictionary-1.5.1.tar.gz (with the version number subject to change) depending on whether you are using GNU tar which support the z flag for compression. After - unpacking the archive a directory dictionary-1.5 has been created + unpacking the archive a directory dictionary-1.5.1 has been created containing the necessary files. Installation @@ -95,12 +95,12 @@ Debian dpkg-buildpackage) you can use the supplied debian support. make debian - This will create a package named dictionary-1.5-1_i386.deb or similiar - in the parent directory of dictionary-1.5. You can now install this - package as root, it will automatically byte-compile itself for all - installed emacs versions and provide a startup-file which autoloads - this package. In the configuration example given below you can omit - the autoload lines. + This will create a package named dictionary-1.5.1-1_i386.deb or + similiar in the parent directory of dictionary-1.5.1. You can now + install this package as root, it will automatically byte-compile + itself for all installed emacs versions and provide a startup-file + which autoloads this package. In the configuration example given below + you can omit the autoload lines. If you no longer want to use this package, you can remove it using: dpkg -r dictionary @@ -164,8 +164,8 @@ Manually In addition, some key bindings for faster access can be useful. I use the following ones in my installation: ;; key bindings -(global-set-key [(control c) ?s] 'dictionary-search) -(global-set-key [(control c) ?m] 'dictionary-match-words) +(global-set-key "\C-cs" 'dictionary-search) +(global-set-key "\C-cm" 'dictionary-match-words) I will describe the user-callable functions and the key bindings within dictionary mode later in this document. @@ -403,8 +403,8 @@ Getting Help user-reserved keys starting from C-c a to C-c z. It also shows how to invoke popup menus (using the right button in GNU Emacs or ctrl+right button in XEmacs) and installs the global tooltip-mode. -(global-set-key [(control c) ?s] 'dictionary-search) -(global-set-key [(control c) ?m] 'dictionary-match-words) +(global-set-key "\C-cs" 'dictionary-search) +(global-set-key "\C-cm" 'dictionary-match-words) (setq dictionary-server "localhost") ;; Popup menu for GNU Emacs 21, and XEmacs 21 @@ -419,9 +419,9 @@ Getting Help Thanks I want to thank Sam Steingold, Baoqiu Cui, Bruce Ravel, Pavel Janík, - Sergei Pokrovsky, Jeff Mincy, Serge Boiko, Enrico Scholz, and Reuben - Thomas for their valuable suggestions (including patches) for - improving this package. + Sergei Pokrovsky, Jeff Mincy, Serge Boiko, Enrico Scholz, Reuben + Thomas, and Rui Zhu for their valuable suggestions (including patches) + for improving this package. License @@ -440,6 +440,11 @@ Getting Help ChangeLogs +Version 1.5 - 1.5.1 + + * fixed bug with non-working dictionary-previous (found by Rui Zhu) + * fixed key bindings in link.el + Version 1.4.1 - 1.5 * tool-tip support for GNU Emacs 21 @@ -521,7 +526,7 @@ Version 1.0 - 1.1 [14]Torsten Hilbrich - Last modified: Sun Jul 8 21:53:36 CEST 2001 + Last modified: Tue Jul 17 21:22:58 CEST 2001 References @@ -530,7 +535,7 @@ References 2. http://www.dict.org/rfc2229.txt 3. http://www.xemacs.org/ 4. http://www.myrkr.in-berlin.de/dictionary.html - 5. http://localhost/~torsten/dictionary-1.5.tar.gz + 5. http://localhost/~torsten/dictionary-1.5.1.tar.gz 6. http://localhost/~torsten/dictionary-1.4.1.tar.gz 7. http://localhost/~torsten/dictionary-1.3.3.tar.gz 8. http://localhost/~torsten/dictionary-1.2.1.tar.gz |