diff options
Diffstat (limited to 'dictionary-init.el')
-rwxr-xr-x | dictionary-init.el | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dictionary-init.el b/dictionary-init.el new file mode 100755 index 0000000..540dfc3 --- /dev/null +++ b/dictionary-init.el @@ -0,0 +1,24 @@ +;; $Id: dictionary-init.el,v 1.7 2003/06/21 17:55:15 torsten Exp $ +;; This file contains the autoload definitions that are used by the +;; debian package and can also be used in a standalone installation +;; The XEmacs package has some other means to create the autoload +;; information. + +(autoload 'dictionary-search "dictionary" + "Ask for a word and search it in all dictionaries" t) +(autoload 'dictionary-match-words "dictionary" + "Ask for a word and search all matching words in the dictionaries" t) +(autoload 'dictionary-lookup-definition "dictionary" + "Unconditionally lookup the word at point." t) +(autoload 'dictionary "dictionary" + "Create a new dictionary buffer" t) +(autoload 'dictionary-mouse-popup-matching-words "dictionary" + "Display entries matching the word at the cursor" t) +(autoload 'dictionary-popup-matching-words "dictionary" + "Display entries matching the word at the point" t) +(autoload 'dictionary-tooltip-mode "dictionary" + "Display tooltips for the current word" t) +(unless (boundp 'running-xemacs) + (autoload 'global-dictionary-tooltip-mode "dictionary" + "Enable/disable dictionary-tooltip-mode for all buffers" t)) + |