diff options
| author | Kim F. Storm | 2006-02-20 22:31:16 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-02-20 22:31:16 +0000 |
| commit | 49af2995e0c3c30039ca36fc65c28b62c9d0e5a4 (patch) | |
| tree | 9e6c6213a6c5ea836c964ae4caf6a22930308e81 /src/ChangeLog | |
| parent | 277fd553d855d82cc2ae6a0b84b0516c813788a1 (diff) | |
| download | emacs-49af2995e0c3c30039ca36fc65c28b62c9d0e5a4.tar.gz emacs-49af2995e0c3c30039ca36fc65c28b62c9d0e5a4.zip | |
*** empty log message ***
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e922586bde2..3667d6c7a68 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,45 @@ | |||
| 1 | 2006-02-20 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * Makefile.in: Add fringe.elc to WINDOW_SUPPORT. | ||
| 4 | |||
| 5 | * buffer.h (struct buffer): New members fringe_indicator_alist and | ||
| 6 | fringe_cursor_alist. | ||
| 7 | |||
| 8 | * buffer.c (init_buffer_once): Set dummy default values for | ||
| 9 | fringe-indicator-alist and fringe-cursor-alist. The proper | ||
| 10 | default values are set by pre-loading fringe.el. | ||
| 11 | (syms_of_buffer): defvar_per_buffer new fringe-indicator-alist and | ||
| 12 | fringe-cursor-alist buffer-local variables and defvar_lisp_nopro | ||
| 13 | correspondig default- variables. | ||
| 14 | |||
| 15 | * fringe.c (enum fringe_bitmap_type): Remove. Change all uses | ||
| 16 | to use `int'. | ||
| 17 | (NO_FRINGE_BITMAP, UNDEF_FRINGE_BITMAP, MAX_STANDARD_FRINGE_BITMAPS): | ||
| 18 | Define explicitly. | ||
| 19 | (Qtruncation, Qcontinuation, Qempty_line, Qtop_bottom) | ||
| 20 | (Qhollow_small): New variables. | ||
| 21 | (syms_of_fringe): Intern and staticpro them. | ||
| 22 | (question_mark_bits): Rename from unknown_bits. | ||
| 23 | (left_curly_arrow_bits): Rename from continuation_bits. | ||
| 24 | (right_curly_arrow_bits): Rename from continued_bits. | ||
| 25 | (left_triangle_bits): Rename from ov_bits. | ||
| 26 | (right_triangle_bits): Added. | ||
| 27 | (filled_rectangle_bits): Rename from filled_box_cursor_bits. | ||
| 28 | (hollow_rectangle_bits): Rename from hollow_box_cursor_bits. | ||
| 29 | (filled_square_bits): Added. | ||
| 30 | (vertical_bar_bits): Rename from bar_cursor_bits. | ||
| 31 | (horisontal_bar_bits): Rename from hbar_cursor_bits. | ||
| 32 | (empty_line_bits): Rename from zv_bits. | ||
| 33 | (standard_bitmaps): Update to use new names. | ||
| 34 | (draw_fringe_bitmap_1): Make static. | ||
| 35 | (get_logical_cursor_bitmap, get_logical_fringe_bitmap): New functions | ||
| 36 | to map from logical cursors and indicators to physical bitmaps. | ||
| 37 | (draw_fringe_bitmap): Resolve fringe cursor and overlay-arrow | ||
| 38 | bitmaps using symbol names instead of bitmap numbers. | ||
| 39 | (update_window_fringes): Use logical indicator symbol names | ||
| 40 | instead of bitmap numbers for logical. Add bitmap cache. | ||
| 41 | (LEFT_FRINGE, RIGHT_FRINGE): New helper macros. | ||
| 42 | |||
| 1 | 2006-02-20 Chong Yidong <cyd@stupidchicken.com> | 43 | 2006-02-20 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 44 | ||
| 3 | * regex.c: Revert 2006-02-19 change. | 45 | * regex.c: Revert 2006-02-19 change. |