diff options
| author | Joakim Verona | 2011-09-19 11:37:46 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-09-19 11:37:46 +0200 |
| commit | 4caed0bee59613be5d2a6c4afabcdc43222f953e (patch) | |
| tree | d0c1debf666ef2107492e6cdd2bc8d6bb17de8a2 /src/ChangeLog | |
| parent | c139d20a0c582a2c8fe3766128092c32b692ac23 (diff) | |
| parent | c5b01d8c63cfd14c95a029540a6fb0da84537726 (diff) | |
| download | emacs-4caed0bee59613be5d2a6c4afabcdc43222f953e.tar.gz emacs-4caed0bee59613be5d2a6c4afabcdc43222f953e.zip | |
upstream
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 93 |
1 files changed, 92 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 15281f47438..12a45918e87 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,94 @@ | |||
| 1 | 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is | ||
| 4 | (bug#9493). | ||
| 5 | |||
| 6 | 2011-09-18 Chong Yidong <cyd@stupidchicken.com> | ||
| 7 | |||
| 8 | * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as | ||
| 9 | boolean (Bug#9154). | ||
| 10 | |||
| 11 | 2011-09-18 Eli Zaretskii <eliz@gnu.org> | ||
| 12 | |||
| 13 | * xdisp.c (display_line): Record maximum and minimum buffer | ||
| 14 | positions even if no glyphs were produced (e.g., by a zero-width | ||
| 15 | stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record | ||
| 16 | buffer positions that will be removed from the glyph row because | ||
| 17 | they don't fit. | ||
| 18 | (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the | ||
| 19 | column is beyond frame width: don't subtract 1 "pixel" when | ||
| 20 | computing width of the stretch. | ||
| 21 | (reseat_at_next_visible_line_start): Undo the change made on | ||
| 22 | 2011-09-17 that saved paragraph information and restored it after | ||
| 23 | the call to `reseat'. (Bug#9545) | ||
| 24 | |||
| 25 | 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 26 | |||
| 27 | * xdisp.c (expose_window): Save original value of phys_cursor_on_p | ||
| 28 | and turn window cursor on if cleared (Bug#9415). | ||
| 29 | |||
| 30 | 2011-09-18 Andreas Schwab <schwab@linux-m68k.org> | ||
| 31 | |||
| 32 | * search.c (boyer_moore): Take unibyte characters from pattern | ||
| 33 | literally. (Bug#9458) | ||
| 34 | |||
| 35 | 2011-09-18 Eli Zaretskii <eliz@gnu.org> | ||
| 36 | |||
| 37 | * xdisp.c (reseat_at_next_visible_line_start): Fix last change. | ||
| 38 | |||
| 39 | 2011-09-18 Paul Eggert <eggert@cs.ucla.edu> | ||
| 40 | |||
| 41 | Fix minor problem found by static checking. | ||
| 42 | * xdisp.c (reseat_at_next_visible_line_start): Mark locals as | ||
| 43 | initialized, to pacify gcc -Wuninitialized. | ||
| 44 | |||
| 45 | * fileio.c: Report proper errno when syscall falls. | ||
| 46 | (Finsert_file_contents): Save and restore errno, | ||
| 47 | so that report_file_error outputs the correct diagnostic. | ||
| 48 | (Fwrite_region) [CLASH_DETECTION]: Likewise. | ||
| 49 | |||
| 50 | 2011-09-18 Eli Zaretskii <eliz@gnu.org> | ||
| 51 | |||
| 52 | * .gdbinit (pgx): Fix references to fields of `struct glyph'. | ||
| 53 | |||
| 54 | 2011-09-17 Eli Zaretskii <eliz@gnu.org> | ||
| 55 | |||
| 56 | * xdisp.c (produce_stretch_glyph): Another fix for changes made on | ||
| 57 | 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530) | ||
| 58 | |||
| 59 | 2011-09-17 Eli Zaretskii <eliz@gnu.org> | ||
| 60 | |||
| 61 | * xdisp.c (reseat_at_next_visible_line_start): Keep information | ||
| 62 | about the current paragraph and restore it after the call to | ||
| 63 | reseat. | ||
| 64 | |||
| 65 | * bidi.c (MAX_PARAGRAPH_SEARCH): New macro. | ||
| 66 | (bidi_find_paragraph_start): Search back for paragraph beginning | ||
| 67 | at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE. | ||
| 68 | (bidi_move_to_visually_next): Only trigger paragraph-related | ||
| 69 | computations when the last character is a newline or at EOB, not | ||
| 70 | just any NEUTRAL_B. (Bug#9470) | ||
| 71 | |||
| 72 | * xdisp.c (set_cursor_from_row): Don't invoke special treatment of | ||
| 73 | truncated lines if point is covered by a display string. (Bug#9524) | ||
| 74 | |||
| 75 | 2011-09-16 Paul Eggert <eggert@cs.ucla.edu> | ||
| 76 | |||
| 77 | * xselect.c: Relax test for outgoing X longs (Bug#9498). | ||
| 78 | (cons_to_x_long): New function. | ||
| 79 | (lisp_data_to_selection_data): Use it. Correct the test for | ||
| 80 | short-versus-long data; it was negated. Break out of vector | ||
| 81 | loop, for efficiency, when a long datum is discovered. | ||
| 82 | |||
| 83 | 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 84 | |||
| 85 | * eval.c (Fquote): Document its non-consing behavior (bug#9482). | ||
| 86 | |||
| 87 | 2011-09-16 Eli Zaretskii <eliz@gnu.org> | ||
| 88 | |||
| 89 | * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see | ||
| 90 | GCC PR/17406) by declaring this function with external scope. | ||
| 91 | |||
| 1 | 2011-09-15 Paul Eggert <eggert@cs.ucla.edu> | 92 | 2011-09-15 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 93 | ||
| 3 | * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514). | 94 | * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514). |
| @@ -1281,7 +1372,7 @@ | |||
| 1281 | underline, overline, and strike-through. | 1372 | underline, overline, and strike-through. |
| 1282 | (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to | 1373 | (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to |
| 1283 | ns_draw_text_decoration. Change treatment of cursor drawing to | 1374 | ns_draw_text_decoration. Change treatment of cursor drawing to |
| 1284 | accomodate underlining, etc. | 1375 | accommodate underlining, etc. |
| 1285 | 1376 | ||
| 1286 | 2011-07-28 Eli Zaretskii <eliz@gnu.org> | 1377 | 2011-07-28 Eli Zaretskii <eliz@gnu.org> |
| 1287 | 1378 | ||