diff options
| author | Paul Eggert | 2011-07-29 14:14:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-29 14:14:19 -0700 |
| commit | eacb6b4bfa897c12c41a4af73f40ab61b45a8548 (patch) | |
| tree | d0f9e055b6780b64db72c65753a793e1d1a59f66 /src/ChangeLog | |
| parent | 5402029425ceee114d7ed071ac981227f0d1fc38 (diff) | |
| parent | 096a60526593c1571da1ec9137b878ad8178f833 (diff) | |
| download | emacs-eacb6b4bfa897c12c41a4af73f40ab61b45a8548.tar.gz emacs-eacb6b4bfa897c12c41a4af73f40ab61b45a8548.zip | |
Merge from trunk.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 58 |
1 files changed, 57 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d618b30ceba..9e8aedfd36b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,9 +1,65 @@ | |||
| 1 | 2011-07-28 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-07-29 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169). | 3 | * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169). |
| 4 | 4 | ||
| 5 | 2011-07-28 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2011-07-28 Paul Eggert <eggert@cs.ucla.edu> |
| 6 | 6 | ||
| 7 | * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189). | ||
| 8 | This is needed if max-image-size is a floating-point number. | ||
| 9 | |||
| 10 | 2011-07-28 Andreas Schwab <schwab@linux-m68k.org> | ||
| 11 | |||
| 12 | * print.c (print_object): Print empty symbol as ##. | ||
| 13 | |||
| 14 | * lread.c (read1): Read ## as empty symbol. | ||
| 15 | |||
| 16 | 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com> | ||
| 17 | |||
| 18 | * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when | ||
| 19 | setting frame foreground color (Bug#9175). | ||
| 20 | (x_set_background_color): Likewise. | ||
| 21 | |||
| 22 | * nsmenu.m (-setText): Size tooltip dimensions precisely to | ||
| 23 | contents (Bug#9176). | ||
| 24 | (EmacsTooltip -init): Remove bezels and add shadows to | ||
| 25 | tooltip windows. | ||
| 26 | |||
| 27 | * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe | ||
| 28 | or scroll bar (Bug#8470). | ||
| 29 | |||
| 30 | * nsfont.m (nsfont_open): Remove assignment to voffset and | ||
| 31 | unnecessary vars hshink, expand, hd, full_height, min_height. | ||
| 32 | (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913). | ||
| 33 | |||
| 34 | * nsterm.h (nsfont_info): Remove voffset field. | ||
| 35 | |||
| 36 | 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com> | ||
| 37 | |||
| 38 | Implement strike-through and overline on NextStep (Bug#8863). | ||
| 39 | |||
| 40 | * nsfont.m (nsfont_open): Use underline position provided by font, | ||
| 41 | instead of hard-coded value of 2. | ||
| 42 | (nsfont_draw): Call ns_draw_text_decoration instead. | ||
| 43 | |||
| 44 | * nsterm.h: Add declaration for ns_draw_text_decoration. | ||
| 45 | |||
| 46 | * nsterm.m (ns_draw_text_decoration): New function for drawing | ||
| 47 | underline, overline, and strike-through. | ||
| 48 | (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to | ||
| 49 | ns_draw_text_decoration. Change treatment of cursor drawing to | ||
| 50 | accomodate underlining, etc. | ||
| 51 | |||
| 52 | 2011-07-28 Eli Zaretskii <eliz@gnu.org> | ||
| 53 | |||
| 54 | * buffer.c (init_buffer_once): Set bidi-display-reordering to t by | ||
| 55 | default. | ||
| 56 | |||
| 57 | 2011-07-28 Paul Eggert <eggert@cs.ucla.edu> | ||
| 58 | |||
| 59 | * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race. | ||
| 60 | Without this fix, if a signal arrives just after memory fills up, | ||
| 61 | 'malloc' might be invoked reentrantly. | ||
| 62 | |||
| 7 | * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1. | 63 | * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1. |
| 8 | In other words, assume that every image size is allowed, on non-X | 64 | In other words, assume that every image size is allowed, on non-X |
| 9 | hosts. This assumption is probably wrong, but it lets Emacs compile. | 65 | hosts. This assumption is probably wrong, but it lets Emacs compile. |