Mercurial > emacs
annotate BUGS @ 111560:22fafcf25a54
Cleanup of window coordinate positioning code.
Now, text area click input events measure Y from the top of the text
area, excluding the header line if any.
* src/dispnew.c (buffer_posn_from_coords): Assume that X counts from
the start of the text area.
* src/keyboard.c (make_lispy_position): For text area clicks, record Y
pixel position relative to the text area, excluding header line.
Also change X and Y to Lisp_Objects, not pointers; don't return
coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
buffer_posn_from_coords counting from the start of the text area.
(Fposn_at_x_y, make_lispy_event): Callers changed.
* src/w32term.c (w32_read_socket):
* src/msdos.c (dos_rawgetc):
* src/xterm.c (handle_one_xevent): Likewise.
* src/window.c (coordinates_in_window): Change X and Y to ints rather
than pointers; don't return coordinates via pointers.
(struct check_window_data): Change X and Y from pointers to ints.
(window_from_coordinates): Remove args WX and WY; don't return
coordinates via pointers.
(Fcoordinates_in_window_p, window_from_coordinates):
(check_window_containing, Fwindow_at): Callers changed.
(window_relative_x_coord): New function.
* src/window.h (window_from_coordinates, window_relative_x_coord):
Update prototypes.
* src/xdisp.c (remember_mouse_glyph): Change window_from_coordinates
call. Use window_relative_x_coord.
(note_mouse_highlight): Change window_from_coordinates call.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 16 Nov 2010 14:59:24 -0500 |
parents | ac52af4a044c |
children |
rev | line source |
---|---|
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
1 If you think you may have found a bug in GNU Emacs, please read the |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
2 Bugs section of the Emacs manual for advice on |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
3 |
25856 | 4 (1) how to tell when to report a bug, and |
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
5 (2) how to write a useful bug report and what information it needs to have. |
25856 | 6 |
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
7 You can read the read the Bugs section of the manual from inside Emacs. |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
8 Start Emacs, do C-h i to enter Info, then m Emacs RET to get to the |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
9 Emacs manual, then m Bugs RET to get to the section on bugs. |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
10 Or you can use the standalone Info program in a like manner. |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
11 (Standalone Info is part of the Texinfo distribution, not part of the |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
12 Emacs distribution.) |
25856 | 13 |
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
14 Printed copies of the Emacs manual can be purchased from the Free |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
15 Software Foundation's online store at <http://shop.fsf.org/>. |
25856 | 16 |
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
17 If necessary, you can read the manual without an info program: |
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
18 |
25856 | 19 cat info/emacs* | more "+/^File: emacs, Node: Bugs," |
20 | |
110980
ac52af4a044c
* BUGS, INSTALL.BZR: Updates.
Glenn Morris <rgm@gnu.org>
parents:
103152
diff
changeset
|
21 |
103152
fb8bf24d2eb9
* BUGS: Use new binding of view-emacs-problems.
Chong Yidong <cyd@stupidchicken.com>
parents:
55212
diff
changeset
|
22 Please first check the file etc/PROBLEMS (e.g. with C-h C-p in Emacs) to |
34822 | 23 make sure it isn't a known issue. |