aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-08-20 23:07:29 +0300
committerEli Zaretskii2010-08-20 23:07:29 +0300
commite8a6cc19a3127188a95d407cb74d4442b04bc1db (patch)
tree7ce18830b0c2722421ddf0e4401fee05a89b2ecb
parent38f9163d622c5024a75775ce1a2fc9e99e4bd9cb (diff)
downloademacs-e8a6cc19a3127188a95d407cb74d4442b04bc1db.tar.gz
emacs-e8a6cc19a3127188a95d407cb74d4442b04bc1db.zip
Add cross-references regarding POSITION of mouse events.
commands.texi (Misc Events): Add cross-references to where POSITION of a mouse event is described in detail.
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/commands.texi10
2 files changed, 11 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index fe64ca9d835..459bd925cf4 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12010-08-20 Eli Zaretskii <eliz@gnu.org>
2
3 * commands.texi (Misc Events): Add cross-references to where
4 POSITION of a mouse event is described in detail.
5
12010-08-08 Christoph <cschol2112@googlemail.com> 62010-08-08 Christoph <cschol2112@googlemail.com>
2 7
3 * control.texi (Handling Errors) <error-message-string>: Fix arg name. 8 * control.texi (Handling Errors) <error-message-string>: Fix arg name.
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index d22cfd955cb..17cfcc0def8 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -1616,7 +1616,8 @@ These kinds of event are generated by moving a mouse wheel. Their
1616usual meaning is a kind of scroll or zoom. 1616usual meaning is a kind of scroll or zoom.
1617 1617
1618The element @var{position} is a list describing the position of the 1618The element @var{position} is a list describing the position of the
1619event, in the same format as used in a mouse-click event. 1619event, in the same format as used in a mouse-click event (@pxref{Click
1620Events}).
1620 1621
1621@vindex mouse-wheel-up-event 1622@vindex mouse-wheel-up-event
1622@vindex mouse-wheel-down-event 1623@vindex mouse-wheel-down-event
@@ -1633,9 +1634,10 @@ selected in an application outside of Emacs, and then dragged and
1633dropped onto an Emacs frame. 1634dropped onto an Emacs frame.
1634 1635
1635The element @var{position} is a list describing the position of the 1636The element @var{position} is a list describing the position of the
1636event, in the same format as used in a mouse-click event, and 1637event, in the same format as used in a mouse-click event (@pxref{Click
1637@var{files} is the list of file names that were dragged and dropped. 1638Events}), and @var{files} is the list of file names that were dragged
1638The usual way to handle this event is by visiting these files. 1639and dropped. The usual way to handle this event is by visiting these
1640files.
1639 1641
1640This kind of event is generated, at present, only on some kinds of 1642This kind of event is generated, at present, only on some kinds of
1641systems. 1643systems.