Changeset 4105
- Timestamp:
- 07/12/06 21:47:58 (2 years ago)
- Files:
-
- trunk/lisp/ChangeLog.Meadow (modified) (1 diff)
- trunk/lisp/mw32scroll.el (modified) (2 diffs)
- trunk/src/ChangeLog.Meadow (modified) (2 diffs)
- trunk/src/keyboard.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ChangeLog.Meadow
r4098 r4105 1 2006-07-12 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * mw32scroll.el (w32-handle-mouse-wheel-event): Take the 5th 4 element for the difference of the mouse position. Refer to 5 ticket:312. 6 (w32-handle-mouse-wheel-mode-line): Ditto. 7 1 8 2006-07-01 MIYOSHI Masanori <miyoshi@meadowy.org> 2 9 trunk/lisp/mw32scroll.el
r3961 r4105 200 200 (lines 201 201 (w32-get-mouse-wheel-scroll-lines 202 (nth 4position)))202 (nth 5 position))) 203 203 (window-scroll-step (- (window-height window) 204 204 next-screen-context-lines))) 205 205 (if (not lines) 206 (if (< (nth 4position) 0)206 (if (< (nth 5 position) 0) 207 207 (setq lines 3) 208 208 (setq lines -3))) … … 228 228 (mouse-x (car (cdr mousepos))) 229 229 (mouse-y (cdr (cdr mousepos))) 230 (delta (if (> (nth 4position) 0) -1 1))230 (delta (if (> (nth 5 position) 0) -1 1)) 231 231 (mouse-delta delta) 232 232 minibuffer params next-window) trunk/src/ChangeLog.Meadow
r4104 r4105 1 2006-07-12 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * keyboard.c (make_lispy_event<W32_MOUSE_WHEEL_EVENT>): Insert 4 `nil' into the list of the wheel event just before `delta' to 5 suppress errors in describe-key(). Refer to ticket:312. 6 1 7 2006-07-09 YAMAZAKI Katsuhiro <yamazaki-k@mwe.biglobe.ne.jp> 2 8 3 * mw32term.c (mw32_destroy_frame_hdc): Don't release main thread9 * mw32term.c (mw32_destroy_frame_hdc): Don't release main thread 4 10 DC, because this function is called between GET_FRAME_HDC 5 11 and RELEASE_FRAME_HDC on main thread. … … 200 206 2006-04-26 Masayuki FUJII <boochang@m4.kcn.ne.jp> 201 207 202 * mw32term.h: Add the condition related to cygwin for definition of203 RECONVERTSTRING.208 * mw32term.h: Add the condition related to cygwin for definition 209 of RECONVERTSTRING. 204 210 205 211 2006-04-26 Masayuki FUJII <boochang@m4.kcn.ne.jp> trunk/src/keyboard.c
r4079 r4105 5830 5830 Fcons (Fcons(event->x, event->y), 5831 5831 Fcons (make_number (event->timestamp), 5832 Fcons (make_number(delta), Qnil))))); 5832 Fcons (Qnil, /* suppress errors 5833 in describe-key() */ 5834 Fcons (make_number(delta), 5835 Qnil)))))); 5833 5836 5834 5837 /* Always treat mouse wheel events as clicks. */
