aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorMiles Bader2006-08-03 11:45:23 +0000
committerMiles Bader2006-08-03 11:45:23 +0000
commite2b97060142842813b657144787cef3e6e743967 (patch)
treed7f76853b585d08837d3321504a759919c5fbb42 /src/ChangeLog
parenta8fa10a629c86144c90b8b0e58f99581c4e82aba (diff)
parent9b7fa2975f40b82e94dadd13c049ff67ef0ef449 (diff)
downloademacs-e2b97060142842813b657144787cef3e6e743967.tar.gz
emacs-e2b97060142842813b657144787cef3e6e743967.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 357-381) - Merge from gnus--rel--5.10 - Update from CVS - Merge from erc--emacs--21 * gnus--rel--5.10 (patch 116-122) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-98
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1ea2005e0c4..474ead0cde6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,84 @@
12006-08-01 Kim F. Storm <storm@cua.dk>
2
3 * process.c (wait_reading_process_output_unwind): New function.
4 Restores waiting_for_user_input_p to saved value.
5 (wait_reading_process_output): Unwind protect waiting_for_user_input_p
6 instead of save/restore old value on stack.
7
82006-07-30 Thien-Thi Nguyen <ttn@gnu.org>
9
10 * editfns.c: Undo 2006-06-27 change.
11
122006-07-29 Eli Zaretskii <eliz@gnu.org>
13
14 * coding.c (Ffind_operation_coding_system): Revert the change from
15 2006-05-29.
16
17 * alloc.c [WINDOWSNT]: Include fcntl.h, to fix last change.
18
192006-07-28 Richard Stallman <rms@gnu.org>
20
21 * xfaces.c (lookup_named_face, Fdisplay_supports_face_attributes_p):
22 Add conditional aborts for clarity.
23
24 * xdisp.c (update_menu_bar): New arg HOOKS_RUN. Callers changed.
25 Used to avoid running the hooks over and over for each frame.
26 (prepare_menu_bars): Pass value from update_menu_bar
27 as HOOKS_RUN of next call.
28
29 * keyboard.c (safe_run_hooks_1): Don't crash if Vrun_hooks is nil.
30
312006-07-28 Kim F. Storm <storm@cua.dk>
32
33 * alloc.c (valid_pointer_p): New function (from valid_lisp_object_p).
34 (valid_lisp_object_p): Use it to check for valid SUBRP obj.
35
362006-07-26 Chong Yidong <cyd@stupidchicken.com>
37
38 * keyboard.c (read_char): New arg END_TIME specifying timeout.
39 All callers changed. Turn off echoing if END_TIME is non-NULL.
40 (kbd_buffer_get_event): New arg END_TIME.
41
42 * lread.c (read_filtered_event): New arg SECONDS to wait until.
43 (Fread_char, Fread_event, Fread_char_exclusive): New arg SECONDS.
44
45 * lisp.h: Update read-char, read-event, and read_filtered_event
46 prototypes.
47
48 * keyboard.h: Include systime.h. Update read_char prototype.
49
502006-07-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
51
52 * alloc.c (find_string_data_in_pure): New function.
53 (make_pure_string): Use it to reuse existing string data if possible.
54
55 * puresize.h (BASE_PURESIZE): Decrease to 1102000.
56
572006-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * keymap.c (Fdefine_key): If the key binding definition looks like an
60 XEmacs-style key sequence, convert it to Emacs's format.
61
622006-07-22 Ralf Angeli <angeli@caeruleus.net>
63
64 * w32fns.c (w32_createwindow): If `left' and/or `top' frame
65 parameters are bound to some values, use that instead of
66 CW_USEDEFAULT.
67
682006-07-21 Eli Zaretskii <eliz@gnu.org>
69
70 * w32.c (convert_time): Use explicit long double constants to
71 ensure long double arithmetics is used throughout.
72
732006-07-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
74
75 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): New vars.
76 (init_alloc_once): Initialize them.
77 (pure_alloc): Allocate non-Lisp objects from the end of pure storage
78 without alignment.
79
80 * puresize.h (BASE_PURESIZE): Decrease to 1141000.
81
12006-07-18 Francis Litterio <franl@world.std.com> 822006-07-18 Francis Litterio <franl@world.std.com>
2 83
3 * w32term.c (x_calc_absolute_position): Fix frame positioning 84 * w32term.c (x_calc_absolute_position): Fix frame positioning
@@ -131,6 +212,14 @@
131 (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel. 212 (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel.
132 (x_delete_display): Apply 2006-07-04 change for xterm.c. 213 (x_delete_display): Apply 2006-07-04 change for xterm.c.
133 214
2152006-07-17 Richard Stallman <rms@gnu.org>
216
217 * keyboard.c (Vcommand_error_function): New variable.
218 (syms_of_keyboard): Defvar it.
219 (cmd_error_internal): Simplify, and handle Vcommand_error_function.
220
221 * dispnew.c (init_display): Mention DISPLAY as well as TERM in err msg.
222
1342006-07-17 Kim F. Storm <storm@cua.dk> 2232006-07-17 Kim F. Storm <storm@cua.dk>
135 224
136 * xdisp.c (handle_single_display_spec): Ensure the right value of 225 * xdisp.c (handle_single_display_spec): Ensure the right value of