aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog135
1 files changed, 135 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 474ead0cde6..1d7e22867e3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,138 @@
12006-08-16 Andreas Schwab <schwab@suse.de>
2
3 * print.c (debug_output_compilation_hack): Fix return type.
4
52006-08-16 Richard Stallman <rms@gnu.org>
6
7 * print.c (debug_output_compilation_hack): New function.
8
92006-08-16 Kenichi Handa <handa@m17n.org>
10
11 * fileio.c (choose_write_coding_system): Use LF for end-of-line
12 in auto-saving.
13
142006-08-15 Chong Yidong <cyd@stupidchicken.com>
15
16 * keyboard.c (read_char): Don't change idle timer state at all if
17 end_time is supplied.
18
192006-08-15 Kenichi Handa <handa@m17n.org>
20
21 * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New arg RET. If SRC
22 is exhausted, return with RET.
23 (detect_coding_emacs_mule, detect_coding_iso2022)
24 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
25 (detect_coding_utf_16, detect_coding_ccl): Adjusted for the above
26 change.
27
282006-08-14 Chong Yidong <cyd@stupidchicken.com>
29
30 * keyboard.c (read_char): Don't reset idle timers if a time limit
31 is supplied.
32
332006-08-14 Kim F. Storm <storm@cua.dk>
34
35 * .gdbinit (pitx): Print iterator position.
36 Limit stack dump in case iterator is not initialized.
37
382006-08-12 Eli Zaretskii <eliz@gnu.org>
39
40 * frame.c (Fmouse_position, Fmouse_pixel_position)
41 (Fset_mouse_position, Fset_mouse_pixel_position): Doc fix.
42
432006-08-11 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
44
45 * xselect.c (Fx_register_dnd_atom): New function.
46 (syms_of_xselect): Defsubr it.
47 (x_handle_dnd_message): Check that message_type is in
48 dpyinfo->x_dnd_atoms before generating lisp event.
49
50 * xterm.h (struct x_display_info): Add x_dnd_atoms* to keep track
51 of drag and drop Atoms.
52
53 * xterm.c (x_term_init): Initialize dpyinfo->x_dnd_atoms*
54
55
562006-08-10 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
57
58 * keyboard.c: Define in_sighandler.
59 (input_available_signal): Set in_sighandler.
60 (init_keyboard): Initialize in_sighandler.
61
62 * keyboard.h: Declare in_sighandler.
63
64 * alloc.c (UNBLOCK_INPUT_ALLOC, BLOCK_INPUT_ALLOC): Use in_sighandler
65 to check if mutex should be locked or not.
66
672006-08-09 Richard Stallman <rms@gnu.org>
68
69 * keyboard.c (keyremap_step): No-op if fkey->parent = nil.
70 (read_key_sequence): Always start fkey.start and fkey.end at 0,
71 and likewise for keytran.
72
732006-08-09 Kenichi Handa <handa@m17n.org>
74
75 * coding.c (syms_of_coding): Improve the docstring
76 file-coding-system-alist.
77
782006-08-07 Andreas Schwab <schwab@suse.de>
79
80 * puresize.h (BASE_PURESIZE): Increase to 1120000.
81
822006-08-06 Chong Yidong <cyd@stupidchicken.com>
83
84 * buffer.c (Vchange_major_mode_hook, Qchange_major_mode_hook): New vars.
85 (Fkill_all_local_variables): Use it.
86 (syms_of_buffer): Defvar it.
87
882006-08-05 Eli Zaretskii <eliz@gnu.org>
89
90 * w32.c (w32_valid_pointer_p): New function.
91
92 * w32.h: Add prototype for w32_valid_pointer_p.
93
94 * alloc.c: Include w32.h.
95 (valid_lisp_object_p) [WINDOWSNT]: Call w32_valid_pointer_p to do
96 the job.
97
98 * keyboard.c (kbd_buffer_get_event): Return Qnil when current time
99 is exactly equal to end_time, not only when it is past that.
100
1012006-08-04 Chong Yidong <cyd@stupidchicken.com>
102
103 * keyboard.c (read_char): Rebalance specpdl after receiving jump.
104
105 * process.c: Reapply 2006-08-01 change.
106
1072006-08-04 Eli Zaretskii <eliz@gnu.org>
108
109 * w32fns.c (w32_query_font): Fix last change: use stricmp.
110
1112006-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
112
113 * editfns.c (Fsubst_char_in_region): Redo the setup work after running
114 the before-change-functions since they may have altered the buffer.
115
1162006-08-04 Ralf Angeli <angeli@caeruleus.net>
117
118 * w32fns.c (w32_createwindow): Handle -geometry command line option
119 and the geometry settings in the Registry.
120
1212006-08-04 Kenichi Handa <handa@m17n.org>
122
123 * w32fns.c (w32_query_font): Compare names by ignoring case.
124
125 * xterm.c (x_query_font): Compare names by ignoring case.
126
1272006-08-03 Jason Rumney <jasonr@gnu.org>
128
129 * w32menu.c (w32_menu_show, w32_dialog_show): Call Fsignal to quit
130 when no option selected.
131
1322006-08-03 Chong Yidong <cyd@stupidchicken.com>
133
134 * process.c: Revert last change.
135
12006-08-01 Kim F. Storm <storm@cua.dk> 1362006-08-01 Kim F. Storm <storm@cua.dk>
2 137
3 * process.c (wait_reading_process_output_unwind): New function. 138 * process.c (wait_reading_process_output_unwind): New function.