diff options
| author | Karoly Lorentey | 2006-02-28 17:35:08 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-02-28 17:35:08 +0000 |
| commit | bdf36482bbea390390ae7ab1461b14b807c4fb1f (patch) | |
| tree | b5233d2eecc5dc15e0d4590bb8b006978470c1f9 /src/ChangeLog | |
| parent | 769ca8d5851c58825954d69ffc9b6033db650204 (diff) | |
| parent | 3ea32d7481523bbb0c54b90606687dcba5c5a405 (diff) | |
| download | emacs-bdf36482bbea390390ae7ab1461b14b807c4fb1f.tar.gz emacs-bdf36482bbea390390ae7ab1461b14b807c4fb1f.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-120
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-121
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-122
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-123
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-124
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-125
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-126
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-127
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-40
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-41
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-42
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-523
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d8e0b6fb4e1..79db6d09d0b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,85 @@ | |||
| 1 | 2006-02-26 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * xterm.h, xterm.c (x_uncatch_errors): Delete unneccessary | ||
| 4 | argument. | ||
| 5 | |||
| 6 | * xterm.c: (x_load_font, x_term_init, XTmouse_position) | ||
| 7 | (handle_one_xevent, x_connection_closed, x_list_fonts): No arg for | ||
| 8 | x_uncatch_errors. | ||
| 9 | |||
| 10 | * xselect.c (x_own_selection, x_decline_selection_request) | ||
| 11 | (x_reply_selection_request, x_get_foreign_selection) | ||
| 12 | (Fx_get_atom_name, Fx_send_client_event): Likewise. | ||
| 13 | |||
| 14 | * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame): | ||
| 15 | Likewise. | ||
| 16 | |||
| 17 | 2006-02-26 Luc Teirlinck <teirllm@auburn.edu> | ||
| 18 | |||
| 19 | * lread.c: Declare Vload_file_rep_suffixes instead of | ||
| 20 | deleted variable default_suffixes. | ||
| 21 | (Fget_load_suffixes): New function. | ||
| 22 | (Fload): Use Fget_load_suffixes and Vload_file_rep_suffixes. | ||
| 23 | No longer use deleted variable default_suffixes. Update docstring. | ||
| 24 | (syms_of_lread): defsubr Sget_load_suffixes. | ||
| 25 | Expand `load-suffixes' docstring. | ||
| 26 | Delete default_suffixes and DEFVAR_LISP the new variable | ||
| 27 | `load-file-rep-suffixes'. | ||
| 28 | |||
| 29 | * w32.c (check_windows_init_file): Use Fget_load_suffixes instead | ||
| 30 | of Vload_suffixes. | ||
| 31 | |||
| 32 | * lisp.h: EXFUN Fget_load_suffixes. | ||
| 33 | Extern Vload_file_rep_suffixes. | ||
| 34 | |||
| 35 | * eval.c (specpdl_ptr): Remove volatile qualifier for consistency | ||
| 36 | with lisp.h. | ||
| 37 | |||
| 38 | 2006-02-26 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 39 | |||
| 40 | * lisp.h (struct specbinding, specpdl_ptr): Remove the volatile | ||
| 41 | qualifier which was trying to avoid the bug that was fixed by | ||
| 42 | yesterday's changes to xterm.c. | ||
| 43 | |||
| 44 | 2006-02-25 Chong Yidong <cyd@stupidchicken.com> | ||
| 45 | |||
| 46 | * xterm.h (x_catch_errors) Return value changed to void. | ||
| 47 | (x_uncatch_errors): Delete unused count argument. | ||
| 48 | |||
| 49 | * xterm.c (x_catch_errors): Don't use record_unwind_protect, since | ||
| 50 | it can be called in a signal handler. | ||
| 51 | (x_catch_errors_unwind): Function deleted. | ||
| 52 | (x_uncatch_errors): Deallocate last x_error_message_stack struct. | ||
| 53 | (x_check_errors): Call x_uncatch_errors before signalling error. | ||
| 54 | |||
| 55 | (x_load_font, x_term_init, XTmouse_position, handle_one_xevent) | ||
| 56 | (x_connection_closed, x_list_fonts): Use new versions of | ||
| 57 | x_catch_errors and x_uncatch_errors. | ||
| 58 | |||
| 59 | * xselect.c (x_own_selection, x_decline_selection_request) | ||
| 60 | (x_reply_selection_request, x_get_foreign_selection) | ||
| 61 | (Fx_get_atom_name, Fx_send_client_event): Likewise. | ||
| 62 | |||
| 63 | * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame): | ||
| 64 | Likewise. | ||
| 65 | |||
| 66 | * eval.c (record_unwind_protect): Add an assertion. | ||
| 67 | |||
| 68 | 2006-02-25 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 69 | |||
| 70 | * process.c (Fmake_network_process): Init the process's mark. | ||
| 71 | |||
| 72 | 2006-02-25 Kim F. Storm <storm@cua.dk> | ||
| 73 | |||
| 74 | * buffer.c (modify_overlay): Force redisplay if we modify an | ||
| 75 | overlay at the end of the buffer. | ||
| 76 | |||
| 77 | 2006-02-24 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 78 | |||
| 79 | * gtkutil.c (xg_get_image_for_pixmap): If x_find_image_file returns | ||
| 80 | nil the image file has been removed, in that case use the (cached) | ||
| 81 | pixmap. | ||
| 82 | |||
| 1 | 2006-02-24 Kenichi Handa <handa@m17n.org> | 83 | 2006-02-24 Kenichi Handa <handa@m17n.org> |
| 2 | 84 | ||
| 3 | * fileio.c (Finsert_file_contents): When a text is replaced | 85 | * fileio.c (Finsert_file_contents): When a text is replaced |