diff options
| author | Kim F. Storm | 2004-01-06 23:49:51 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-01-06 23:49:51 +0000 |
| commit | 05faee07bb347841ec71ebacd768c571dc925e80 (patch) | |
| tree | 4aa31303e2f19a3d9552c564c65c02ad6584c9fd | |
| parent | d6dc647fdbfba81503c6f7996a46066407bcfb41 (diff) | |
| download | emacs-05faee07bb347841ec71ebacd768c571dc925e80.tar.gz emacs-05faee07bb347841ec71ebacd768c571dc925e80.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 20 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
4 files changed, 36 insertions, 5 deletions
| @@ -1792,14 +1792,18 @@ mouse event, e.g. [area4 mouse-1] if the hot-spot's ID is `area4'. | |||
| 1792 | *** Mouse clicks on fringes now generates left-fringe or right-fringes | 1792 | *** Mouse clicks on fringes now generates left-fringe or right-fringes |
| 1793 | events, rather than a text area click event. | 1793 | events, rather than a text area click event. |
| 1794 | 1794 | ||
| 1795 | *** Mouse clicks in the left and right marginal areas now includes a | ||
| 1796 | sensible buffer position corresponding to the first character in the | ||
| 1797 | corresponding text row. | ||
| 1798 | |||
| 1799 | *** Function `mouse-set-point' now works for events outside text area. | ||
| 1800 | |||
| 1795 | +++ | 1801 | +++ |
| 1796 | *** Mouse events now includes buffer position for all event types. | 1802 | *** Mouse events now includes buffer position for all event types. |
| 1797 | 1803 | ||
| 1798 | +++ | 1804 | +++ |
| 1799 | *** `posn-point' now returns buffer position for non-text area events. | 1805 | *** `posn-point' now returns buffer position for non-text area events. |
| 1800 | 1806 | ||
| 1801 | *** Function `mouse-set-point' now works for events outside text area. | ||
| 1802 | |||
| 1803 | +++ | 1807 | +++ |
| 1804 | *** New function `posn-area' returns window area clicked on (nil means | 1808 | *** New function `posn-area' returns window area clicked on (nil means |
| 1805 | text area). | 1809 | text area). |
| @@ -1817,9 +1821,15 @@ text area). | |||
| 1817 | *** Mouse events include relative x and y pixel coordinates relative to | 1821 | *** Mouse events include relative x and y pixel coordinates relative to |
| 1818 | the top left corner of the object (image or character) clicked on. | 1822 | the top left corner of the object (image or character) clicked on. |
| 1819 | 1823 | ||
| 1820 | *** New functions 'posn-object' and 'posn-object-x-y' return the image | 1824 | +++ |
| 1821 | or string object of a mouse click, and the x and y pixel coordinates | 1825 | *** Mouse events include the pixel width and height of the object |
| 1822 | relative to the top left corner of that object. | 1826 | (image or character) clicked on. |
| 1827 | |||
| 1828 | +++ | ||
| 1829 | *** New functions 'posn-object', 'posn-object-x-y', and | ||
| 1830 | 'posn-object-width-height' return the image or string object of a mouse | ||
| 1831 | click, the x and y pixel coordinates relative to the top left corner | ||
| 1832 | of that object, and the total width and height of that object. | ||
| 1823 | 1833 | ||
| 1824 | ** New function `force-window-update' can initiate a full redisplay of | 1834 | ** New function `force-window-update' can initiate a full redisplay of |
| 1825 | one or all windows. Normally, this is not needed as changes in window | 1835 | one or all windows. Normally, this is not needed as changes in window |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5b8b2f93e1b..bdfff47a942 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2004-01-07 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * subr.el (event-start, event-end): Doc fix. | ||
| 4 | (posn-string, posn-image): New defuns. | ||
| 5 | (posn-object): Return either image or string object. | ||
| 6 | (posn-object-x-y): Return 8th element of position. | ||
| 7 | (posn-object-width-height): New defun. | ||
| 8 | |||
| 1 | 2004-01-06 Andreas Schwab <schwab@suse.de> | 9 | 2004-01-06 Andreas Schwab <schwab@suse.de> |
| 2 | 10 | ||
| 3 | * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in | 11 | * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index d61b756401a..ab5a573a89a 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2004-01-07 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * commands.texi (Click Events): Describe new image and | ||
| 4 | width/height elements of click events. | ||
| 5 | (Accessing Events): Add posn-string, posn-image, and | ||
| 6 | posn-object-width-height. Change posn-object to return either | ||
| 7 | image or string object. | ||
| 8 | |||
| 1 | 2004-01-01 Simon Josefsson <jas@extundo.com> | 9 | 2004-01-01 Simon Josefsson <jas@extundo.com> |
| 2 | 10 | ||
| 3 | * hooks.texi (Standard Hooks): Add before-save-hook. | 11 | * hooks.texi (Standard Hooks): Add before-save-hook. |
diff --git a/src/ChangeLog b/src/ChangeLog index 8c173e02c46..78738b194c5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-01-07 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * process.c (read_process_output): Only activate adaptive | ||
| 4 | buffering if we read less than 256 bytes at a time. | ||
| 5 | |||
| 1 | 2004-01-06 Kim F. Storm <storm@cua.dk> | 6 | 2004-01-06 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * dispnew.c (buffer_posn_from_coords): Return both buffer/string | 8 | * dispnew.c (buffer_posn_from_coords): Return both buffer/string |