Mercurial > emacs
annotate etc/DISTRIB @ 40137:5f0d7d58283b
(remember_mouse_glyph): New function.
(w32_mouse_position): Use it.
(note_mouse_movement): If the mouse moved off the glyph, remember its
new position.
Sync with xterm.c:
(notice_overwritten_cursor): Renamed from note_overwritten_text_cursor.
Rewritten to take glyph widths into account.
(x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
(fast_find_string_pos): New function.
(fast_find_position): Return the correct vpos. Add parameter STOP.
In the final row, stop before glyphs having STOP as object.
Don't consider glyphs that are not from a buffer.
(fast_find_position) [0]: Add a presumably more correct version for after 21.1.
(expose_window_tree, expose_frame): Don't compute intersections here.
(expose_window): Do it here instead.
(expose_window_tree, expose_window, expose_line): Return 1 when
overwriting mouse-face.
(expose_window): If W is the window currently being updated, mark
the frame garbaged.
(expose_frame): If mouse-face was overwritten, redo it.
(x_use_underline_position_properties): New variable.
(syms_of_xterm): DEFVAR_BOOL it.
(x_draw_glyph_string): Add comment to use it in future.
(x_draw_glyph_string): Restore clipping after drawing box.
Fix a computation of the underline position.
(w32_get_glyph_string_clip_rect): Minor cleanup.
(x_fill_stretch_glyph_string): Remove an assertion.
(x_produce_glyphs): Don't convert multibyte characters
to unibyte characters in unibyte buffers.
(cursor_in_mouse_face_p): New function.
(x_draw_stretch_glyph_string): Use it to choose a different GC
when drawing a cursor within highlighted text. Don't draw
background again if it has already been drawn.
(x_draw_glyph_string_box): Don't draw a full-width
box just because the glyph row's full_width_p flag is set.
(x_draw_glyphs): Fix computation of rightmost x for full-width rows.
(x_dump_glyph_string): Put in #if GLYPH_DEBUG.
(w32_draw_relief_rect): Extend left shadow to the bottom and left;
change bottom shadow accordingly. Some cleanup.
(x_update_window_end): Handle overwritten mouse face
also for tool bar windows.
(show_mouse_face): Set the glyph row's mouse_face_p flag also when
DRAW is DRAW_IMAGE_RAISED.
(clear_mouse_face): Return 1 if text with mouse face was
actually redrawn. Make the function static. Reset
dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
optimize away highlighting if we pass over that same overlay again.
(note_mouse_highlight): Call mouse_face_overlay_overlaps
to detect a case where we have to highlight a different region
despite not having left the currently highlighted region.
Set mouse_face_overlay in the x_display_info. Avoid changing the
mouse pointer shape when show_mouse_face has already done it, or
there is no need. Handle mouse-face and help-echo in strings.
(glyph_rect): New function.
(w32_mouse_position): Use it to raise the threshold for mouse
movement event generation.
(w32_initialize_display_info): Initialize the x_display_info's
mouse_face_overlay.
(w32_set_vertical_scroll_bar): Don't clear a zero height or width area.
(w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
a widget to zero height.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Sun, 21 Oct 2001 15:20:03 +0000 |
parents | 3e47b3d08800 |
children | 80973470ed3e d7ddb3e565de |
rev | line source |
---|---|
26119 | 1 -*- text -*- |
2 For an order form for all Emacs and FSF distributions deliverable from | |
3 the USA, see the file `ORDERS' in this directory (etc/ in the GNU | |
32809 | 4 Emacs distribution or http://www.gnu.org/order/order.html). For a |
26119 | 5 European order form, see `ORDERS.EUROPE'. For a Japan order form, |
6 see `ORDERS.JAPAN'. | |
7 | |
32809 | 8 GNU Emacs availability information, October 2000 |
9 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998, 2000 | |
26119 | 10 Free Software Foundation, Inc. |
11 | |
12 Permission is granted to anyone to make or distribute | |
13 verbatim copies of this document provided that the | |
14 copyright notice and this permission notice are preserved. | |
15 | |
16 GNU Emacs is legally owned by the Free Software Foundation, but we | |
17 regard the foundation more as its custodian on behalf of the public. | |
18 | |
19 In the GNU project, when we speak of "free software", this refers to | |
20 liberty, not price. Specifically, it refers to the users' freedom to | |
21 study, copy, change and improve the software. Sometimes users pay | |
22 money for copies of GNU software, and sometimes they get copies at no | |
23 charge. But regardless of how they got the software, or whether it | |
24 was modified by anyone else along the way, they have the freedom to | |
25 copy and change it--those freedoms are what "free software" means. | |
26 | |
27 The precise conditions for copying and modification are stated in the | |
28 document "GNU General Public License," a copy of which is required to | |
29 be distributed with every copy of GNU Emacs. It is usually in a file | |
30 named `COPYING' in the same directory as this file. These conditions | |
31 are designed to make sure that everyone who has a copy of GNU Emacs | |
32 (including modified versions) has the freedom to redistribute and | |
33 change it. | |
34 | |
35 If you do not know anyone to get a copy of GNU Emacs from, you can | |
32809 | 36 order a cd-rom from the Free Software Foundation. We distribute |
37 several Emacs versions. We also distribute nicely typeset copies of | |
38 the Emacs user manual, Emacs Lisp Reference Manual, the Emacs | |
39 reference card, etc. See file `ORDERS', or visit | |
40 http://www.gnu.org/order/order.html. | |
26119 | 41 |
42 If you have Internet access, you can copy the latest Emacs | |
32809 | 43 distribution from hosts, such as ftp.gnu.org. There are several ways |
44 to do this; see http://www.gnu.org/software/software.html for more | |
45 information. | |
26119 | 46 |
32809 | 47 Emacs has been run on GNU/Linux, FreeBSD, NetBSD, OpenBSD, and on many |
48 Unix systems, on a variety of types of cpu. It also works on VMS and | |
49 on Apollo computers, though with some deficiencies that reflect | |
50 problems in these operating systems. See the file `MACHINES' in this | |
51 directory (see above) for a full list of machines that GNU Emacs has | |
52 been tested on, with machine-specific installation notes and warnings. | |
32980
3e47b3d08800
Fix a minor typo. Mention that the MS-DOS port works on any DOS box,
Eli Zaretskii <eliz@gnu.org>
parents:
32809
diff
changeset
|
53 There is also an MS-DOS version that works on MS-DOS and all platforms |
3e47b3d08800
Fix a minor typo. Mention that the MS-DOS port works on any DOS box,
Eli Zaretskii <eliz@gnu.org>
parents:
32809
diff
changeset
|
54 that have some kind of ``DOS box'', and also an MS-Windows and a Mac |
3e47b3d08800
Fix a minor typo. Mention that the MS-DOS port works on any DOS box,
Eli Zaretskii <eliz@gnu.org>
parents:
32809
diff
changeset
|
55 version. |
26119 | 56 |
57 Note that there is significant variation between Unix systems | |
58 supposedly running the same version of Unix; it is possible that what | |
59 works in GNU Emacs for me does not work on your system due to such an | |
60 incompatibility. Since I must avoid reading Unix source code, I | |
61 cannot even guess what such problems may exist. | |
62 | |
63 GNU Emacs is distributed with no warranty (see the General Public | |
64 License for full details, in the file `COPYING' in this directory (see | |
65 above)), and neither I nor the Free Software Foundation promises any | |
66 kind of support or assistance to users. The foundation keeps a list | |
67 of people who are willing to offer support and assistance for hire. | |
32809 | 68 See http://www.gnu.org/help/gethelp.html. |
26119 | 69 |
70 However, we plan to continue to improve GNU Emacs and keep it | |
71 reliable, so please send me any complaints and suggestions you have. | |
72 I will probably fix anything that I consider a malfunction. I may | |
73 make improvements that are suggested, but I may choose not to. | |
74 | |
32809 | 75 If you are on the Internet, report bugs to bug-gnu-emacs@gnu.org. You |
76 can use the Emacs command M-x report-bug RET to mail a bug report. | |
77 Please read the Bugs section of the Emacs manual before reporting | |
78 bugs. | |
26119 | 79 |
32809 | 80 General questions about the GNU Project can be asked of gnu@gnu.org. |
26119 | 81 |
82 If you are a computer manufacturer, I encourage you to ship a copy of | |
83 GNU Emacs with every computer you deliver. The same copying | |
84 permission terms apply to computer manufacturers as to everyone else. | |
85 You should consider making a donation to help support the GNU project; | |
86 if you estimate what it would cost to distribute some commercial | |
87 product and divide it by five, that is a good amount. | |
88 | |
89 If you like GNU Emacs, please express your satisfaction with a | |
90 donation: send me or the Foundation what you feel Emacs has been worth | |
91 to you. If you are glad that I developed GNU Emacs and distribute it | |
92 as freeware, rather than following the obstructive and antisocial | |
93 practices typical of software developers, reward me. If you would | |
94 like the Foundation to develop more free software, contribute. | |
95 | |
96 Your donations will help to support the development of additional GNU | |
97 software. GNU/Linux systems (variants of GNU, based on the kernel | |
98 Linux) have millions of users, but there is still much to be done. | |
99 For more information on GNU, see the file `GNU' in this directory (see | |
100 above). | |
101 | |
102 Richard M Stallman | |
103 Chief GNUisance, | |
104 President of the Free Software Foundation |