Initial Commit
[packages] / xemacs-packages / dictionary / dictionary-init.el
1 ;; $Id: dictionary-init.el,v 1.2 2003-06-21 18:05:16 torsten Exp $
2 ;; This file contains the autoload definitions that are used by the
3 ;; debian package and can also be used in a standalone installation
4 ;; The XEmacs package has some other means to create the autoload
5 ;; information.
6
7 (autoload 'dictionary-search "dictionary"
8   "Ask for a word and search it in all dictionaries" t)
9 (autoload 'dictionary-match-words "dictionary"
10   "Ask for a word and search all matching words in the dictionaries" t)
11 (autoload 'dictionary-lookup-definition "dictionary"
12   "Unconditionally lookup the word at point." t)
13 (autoload 'dictionary "dictionary"
14   "Create a new dictionary buffer" t)
15 (autoload 'dictionary-mouse-popup-matching-words "dictionary"
16   "Display entries matching the word at the cursor" t)
17 (autoload 'dictionary-popup-matching-words "dictionary"
18   "Display entries matching the word at the point" t)
19 (autoload 'dictionary-tooltip-mode "dictionary"
20   "Display tooltips for the current word" t)
21 (unless (boundp 'running-xemacs)
22     (autoload 'global-dictionary-tooltip-mode "dictionary"
23       "Enable/disable dictionary-tooltip-mode for all buffers" t))
24