aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKaroly Lorentey2006-02-21 15:57:00 +0000
committerKaroly Lorentey2006-02-21 15:57:00 +0000
commit36b98f827848d2b1ece6aee7a372902e78120e98 (patch)
tree51d7af230b08c05b1733c11b89d27aadd3b8dda1 /src/ChangeLog
parent0383bfd7963905724df93bed01ddeb3b7064222e (diff)
parent8ea094cffae04a654ddb76700fa86fa7e8d03eef (diff)
downloademacs-36b98f827848d2b1ece6aee7a372902e78120e98.tar.gz
emacs-36b98f827848d2b1ece6aee7a372902e78120e98.zip
Merged from emacs@sv.gnu.org
Patches applied: * emacs@sv.gnu.org/emacs--devo--0--patch-105 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-106 Merge from gnus--rel--5.10 * emacs@sv.gnu.org/emacs--devo--0--patch-107 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-108 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-109 Update from CVS * emacs@sv.gnu.org/emacs--devo--0--patch-110 Update from CVS * emacs@sv.gnu.org/gnus--rel--5.10--patch-37 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-516
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f2a6e1e2752..c016dc46e4b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,83 @@
12006-02-21 Kim F. Storm <storm@cua.dk>
2
3 * fringe.c (syms_of_fringe) <fringe-bitmaps>: Doc fix.
4
52006-02-21 Zhang Wei <brep@newsmth.org>
6
7 * xfns.c (Fx_file_dialog, Motif and GTK): DECODE_FILE before
8 returning it.
9
102006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
11
12 * fringe.c (horizontal_bar_bits): Rename from `horisontal_bar_bits'.
13 (standard_bitmaps): Use it.
14
152006-02-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16
17 * macterm.c (mac_draw_string_common): Remove arg MODE. New arg
18 BG_WIDTH. All uses changed. Draw background if BG_WIDTH is not zero.
19 (mac_draw_image_string, mac_draw_image_string_16): New arg BG_WIDTH.
20 [USE_CG_TEXT_DRAWING] (mac_draw_image_string_cg): Rename from
21 mac_draw_string_cg. New arg BG_WIDTH. All uses changed. Draw
22 background if BG_WIDTH is not zero. Use float constants as
23 divisors instead of double. Use alloca instead of xmalloc/xfree.
24 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
25 [!MAC_OS8 || USE_ATSUI]: Background may be drawn using
26 mac_draw_image_string* functions.
27 (XLoadQueryFont) [MAC_OS8 && USE_ATSUI]: Don't adjust heights of
28 some fonts when srcCopy text transfer mode might be used.
29 (mac_begin_clip, mac_end_clip): Check if region is empty.
30 (mac_set_clip_rectangles): When resetting clip region, make it
31 empty instead of disposing of it.
32
332006-02-20 Kim F. Storm <storm@cua.dk>
34
35 * Makefile.in: Add fringe.elc to WINDOW_SUPPORT.
36
37 * buffer.h (struct buffer): New members fringe_indicator_alist and
38 fringe_cursor_alist.
39
40 * buffer.c (init_buffer_once): Set dummy default values for
41 fringe-indicator-alist and fringe-cursor-alist. The proper
42 default values are set by pre-loading fringe.el.
43 (syms_of_buffer): defvar_per_buffer new fringe-indicator-alist and
44 fringe-cursor-alist buffer-local variables and defvar_lisp_nopro
45 corresponding default- variables.
46
47 * fringe.c (enum fringe_bitmap_type): Remove. Change all uses
48 to use `int'.
49 (NO_FRINGE_BITMAP, UNDEF_FRINGE_BITMAP, MAX_STANDARD_FRINGE_BITMAPS):
50 Define explicitly.
51 (Qtruncation, Qcontinuation, Qempty_line, Qtop_bottom)
52 (Qhollow_small): New variables.
53 (syms_of_fringe): Intern and staticpro them.
54 (question_mark_bits): Rename from unknown_bits.
55 (left_curly_arrow_bits): Rename from continuation_bits.
56 (right_curly_arrow_bits): Rename from continued_bits.
57 (left_triangle_bits): Rename from ov_bits.
58 (right_triangle_bits): Added.
59 (filled_rectangle_bits): Rename from filled_box_cursor_bits.
60 (hollow_rectangle_bits): Rename from hollow_box_cursor_bits.
61 (filled_square_bits): Added.
62 (vertical_bar_bits): Rename from bar_cursor_bits.
63 (horizontal_bar_bits): Rename from hbar_cursor_bits.
64 (empty_line_bits): Rename from zv_bits.
65 (standard_bitmaps): Update to use new names.
66 (draw_fringe_bitmap_1): Make static.
67 (get_logical_cursor_bitmap, get_logical_fringe_bitmap): New functions
68 to map from logical cursors and indicators to physical bitmaps.
69 (draw_fringe_bitmap): Resolve fringe cursor and overlay-arrow
70 bitmaps using symbol names instead of bitmap numbers.
71 (update_window_fringes): Use logical indicator symbol names
72 instead of bitmap numbers for logical. Add bitmap cache.
73 (LEFT_FRINGE, RIGHT_FRINGE): New helper macros.
74
752006-02-20 Chong Yidong <cyd@stupidchicken.com>
76
77 * regex.c: Revert 2006-02-19 change.
78 (xmalloc, xrealloc): Define these when not linked to Emacs.
79 Redefine malloc -> xmalloc, realloc -> xrealloc as in Emacs case.
80
12006-02-19 Luc Teirlinck <teirllm@auburn.edu> 812006-02-19 Luc Teirlinck <teirllm@auburn.edu>
2 82
3 * regex.c (extend_range_table_work_area): Fix typo. 83 * regex.c (extend_range_table_work_area): Fix typo.