diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 44a76068313..3282654ab06 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,64 @@ | |||
| 1 | 2011-09-25 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * dbusbind.c (Fdbus_register_signal): When service is not | ||
| 4 | registered, use nil in Vdbus_registered_objects_table. (Bug#9581) | ||
| 5 | |||
| 6 | 2011-09-25 Glenn Morris <rgm@gnu.org> | ||
| 7 | |||
| 8 | * buffer.c (truncate-lines): Doc fix. | ||
| 9 | |||
| 10 | 2011-09-24 Chong Yidong <cyd@stupidchicken.com> | ||
| 11 | |||
| 12 | * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers) | ||
| 13 | (Fset_window_next_buffers): Doc fix. | ||
| 14 | |||
| 15 | 2011-09-24 Glenn Morris <rgm@gnu.org> | ||
| 16 | |||
| 17 | * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715) | ||
| 18 | |||
| 19 | 2011-09-24 Paul Eggert <eggert@cs.ucla.edu> | ||
| 20 | |||
| 21 | Fix minor problems found by static checking. | ||
| 22 | * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int. | ||
| 23 | * indent.c (Fvertical_motion): Fix == vs = typo. | ||
| 24 | |||
| 25 | 2011-09-24 Eli Zaretskii <eliz@gnu.org> | ||
| 26 | |||
| 27 | * dispnew.c (syms_of_display) <redisplay-dont-pause>: Default | ||
| 28 | value is now t. Doc fix. | ||
| 29 | |||
| 30 | * indent.c (Fvertical_motion): Compute and apply the overshoot | ||
| 31 | logic when moving up, not only when moving down. Fix the | ||
| 32 | confusing name and values of the it_overshoot_expected variable; | ||
| 33 | logic changes accordingly. (Bug#9254) (Bug#9549) | ||
| 34 | |||
| 35 | * xdisp.c (pos_visible_p): Produce correct pixel coordinates when | ||
| 36 | CHARPOS is covered by a display string which includes newlines. | ||
| 37 | (move_it_vertically_backward): Avoid inflooping when START_CHARPOS | ||
| 38 | is covered by a display string with embedded newlines. | ||
| 39 | |||
| 40 | 2011-09-24 Michael Albinus <michael.albinus@gmx.de> | ||
| 41 | |||
| 42 | * dbusbind.c (Fdbus_register_signal): Add match rule to | ||
| 43 | Vdbus_registered_objects_table. (Bug#9581) | ||
| 44 | (Fdbus_register_method, Vdbus_registered_objects_table): Fix | ||
| 45 | docstring. | ||
| 46 | |||
| 47 | 2011-09-24 Jim Meyering <meyering@redhat.com> | ||
| 48 | |||
| 49 | do not ignore write error for any output size | ||
| 50 | The previous change was incomplete. | ||
| 51 | While it makes emacs --batch detect the vast majority of stdout | ||
| 52 | write failures, errors were still ignored whenever the output size is | ||
| 53 | k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096, | ||
| 54 | $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \ | ||
| 55 | && echo FAIL: ignored write error | ||
| 56 | FAIL: ignored write error | ||
| 57 | $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \ | ||
| 58 | && echo FAIL: ignored write error | ||
| 59 | FAIL: ignored write error | ||
| 60 | * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574) | ||
| 61 | |||
| 1 | 2011-09-23 Andreas Schwab <schwab@linux-m68k.org> | 62 | 2011-09-23 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 63 | ||
| 3 | * emacs.c (Fkill_emacs): In noninteractive mode exit | 64 | * emacs.c (Fkill_emacs): In noninteractive mode exit |