aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--debian/files1
-rw-r--r--dictionary.el5
3 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index df123a9..a0cbc3f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dictionary (1.5.2-1) unstable; urgency=low
+
+ * popup menu now correctly record the selected window
+
+ -- Torsten Hilbrich <Torsten.Hilbrich@gmx.net> Sun, 2 Sep 2001 10:40:59 +0200
+
dictionary (1.5.1-1) unstable; urgency=low
* corrected bug with dictionary-previous (found by Rui Zhu)
diff --git a/debian/files b/debian/files
deleted file mode 100644
index 7fd7c78..0000000
--- a/debian/files
+++ /dev/null
@@ -1 +0,0 @@
-dictionary_1.5.1-1_i386.deb unknown optional
diff --git a/dictionary.el b/dictionary.el
index 31959dd..9943ca4 100644
--- a/dictionary.el
+++ b/dictionary.el
@@ -2,7 +2,7 @@
;; Author: Torsten Hilbrich <Torsten.Hilbrich@gmx.net>
;; Keywords: interface, dictionary
-;; $Id: dictionary.el,v 1.26 2001/07/17 19:08:23 torsten Exp $
+;; $Id: dictionary.el,v 1.27 2001/09/02 08:39:47 torsten Exp $
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -894,11 +894,12 @@ It presents the word at point as default input and allows editing it."
;;;###autoload
(defun dictionary-mouse-popup-matching-words (event)
"Display entries matching the word at the cursor"
- (interactive "@e")
+ (interactive "e")
(let ((word (save-window-excursion
(save-excursion
(mouse-set-point event)
(current-word)))))
+ (selected-window)
(dictionary-popup-matching-words word)))
;;;###autoload