diff options
author | Torsten Hilbrich <torsten.hilbrich@gmx.net> | 2003-06-21 19:57:00 +0200 |
---|---|---|
committer | Torsten Hilbrich <torsten@hilbrich.net> | 2011-08-27 20:47:38 +0200 |
commit | 14dd2297013df9fb3c2302337e9482fad917f83d (patch) | |
tree | b36aa26b5d889addff981359f36d4cdb30c28386 /dictionary-init.el | |
parent | 1dc8056d649e26117dd769b6dc36af5fcebe635c (diff) |
Imported version 1.8.5 from tarball
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
Diffstat (limited to 'dictionary-init.el')
-rw-r--r-- | dictionary-init.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dictionary-init.el b/dictionary-init.el index 1801281..540dfc3 100644 --- a/dictionary-init.el +++ b/dictionary-init.el @@ -1,4 +1,4 @@ -;; $Id: dictionary-init.el,v 1.6 2002/10/12 09:35:58 torsten Exp $ +;; $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 @@ -18,6 +18,7 @@ "Display entries matching the word at the point" t) (autoload 'dictionary-tooltip-mode "dictionary" "Display tooltips for the current word" t) -(autoload 'global-dictionary-tooltip-mode "dictionary" - "Enable/disable dictionary-tooltip-mode for all buffers" t) +(unless (boundp 'running-xemacs) + (autoload 'global-dictionary-tooltip-mode "dictionary" + "Enable/disable dictionary-tooltip-mode for all buffers" t)) |