aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorMiles Bader2007-03-21 13:33:07 +0000
committerMiles Bader2007-03-21 13:33:07 +0000
commitd85d38392e338f66053a6a6f1017720660239338 (patch)
treee21e084051805db8c4035bc3a01ab7a41e09595f /src/ChangeLog
parent48ff183eab79714fb08df0961484a27052253585 (diff)
parent815b81c8f205562b9d920fc95448924d130e2ab4 (diff)
downloademacs-d85d38392e338f66053a6a6f1017720660239338.tar.gz
emacs-d85d38392e338f66053a6a6f1017720660239338.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 670-674) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 209-210) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-185
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog97
1 files changed, 95 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2c241cd2a51..9cc5e085001 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,96 @@
12007-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * Makefile.in (alloca.o, gtkutil.o): Depend on systime.h.
4 (dired.o, editfns.o, fileio.o, msdos.o): Depend on atimer.h.
5 (dosfns.o, window.o, fns.o, macselect.o): Depend on atimer.h and
6 systime.h.
7 (term.o, print.o, lread.o): Depend on blockinput.h, atimer.h, and
8 systime.h.
9 (macfns.o): Remove duplicate dependency on systime.h.
10
11 * dispnew.c (Fopen_termscript): Add BLOCK_INPUT around fclose.
12 (Fsend_string_to_terminal): Add BLOCK_INPUT around fwrite.
13
14 * fileio.c (do_auto_save_unwind): Add BLOCK_INPUT around fclose.
15 (Fdo_auto_save): Add BLOCK_INPUT around fwrite.
16
17 * keyboard.c (record_char): Add BLOCK_INPUT around fwrite.
18 (Fopen_dribble_file): Add BLOCK_INPUT around fclose.
19
20 * lread.c: Include blockinput.h.
21 (readchar, Fget_file_char): Add BLOCK_INPUT around getc.
22 (unreadchar): Add BLOCK_INPUT around ungetc.
23 (load_unwind): Add BLOCK_INPUT around fclose.
24
25 * print.c: Include blockinput.h.
26 (Fredirect_debugging_output): Add BLOCK_INPUT around fclose.
27
28 * process.c (Fmake_network_process) [HAVE_GETADDRINFO]: Clear
29 immediate_quit before calling freeaddrinfo. Add BLOCK_INPUT
30 around freeaddrinfo.
31
32 * term.c: Include blockinput.h.
33 (write_glyphs, insert_glyphs): Add BLOCK_INPUT around fwrite.
34
352007-03-19 Richard Stallman <rms@gnu.org>
36
37 * keyboard.c (NUM_RECENT_KEYS): Bump up to 300.
38
39 * buffer.c (syms_of_buffer): Doc fix.
40
412007-03-18 Chong Yidong <cyd@stupidchicken.com>
42
43 * image.c (pbm_load): Signal error for invalid image size.
44
452007-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
46
47 * macterm.c (note_mouse_movement): Don't return immediately for
48 LeaveNotify case.
49
50 * macmenu.c (popup_activated_flag): New variable.
51 (x_activate_menubar, mac_menu_show): Set it during menu tracking.
52 (popup_activated): New function.
53
54 * xdisp.c (redisplay_internal, note_mouse_highlight): Check
55 popup_activated for MAC_OS.
56
572007-03-17 Juanma Barranquero <lekktu@gmail.com>
58
59 * buffer.c (syms_of_buffer) <buffer-display-table>: Doc fix.
60 Reported by Nikolaj Schumacher <n_schumacher@web.de>.
61
622007-03-17 Richard Stallman <rms@gnu.org>
63
64 * dired.c (file_name_completion): gcpro NAME.
65
662007-03-17 Chong Yidong <cyd@stupidchicken.com>
67
68 * xdisp.c (try_window_id): Increment matrix positions if the
69 buffer's byte count has increased, but not the character count.
70
712007-03-12 Andreas Schwab <schwab@suse.de>
72
73 * lisp.h: Declare check_obarray.
74
75 * process.c (Fdelete_process): Properly handle deletion of first
76 element of deleted_pid_list.
77 (create_process): Declare pid as pid_t.
78
792007-03-12 Kim F. Storm <storm@cua.dk>
80
81 * process.c (sigchld_handler): Change type of pid to pid_t.
82 Scan deleted_pid_list explicitly to avoid using Fmember which don't
83 know about mark bits and make_fixnum_or_float which may malloc.
84 Reported by Andreas Schwab.
85
86 * keyboard.c (read_key_sequence): Store original event into keybuf
87 when replaying sequence with local keymap(s) from string.
88
892007-03-12 Glenn Morris <rgm@gnu.org>
90
91 * editfns.c (Fdecode_time, Fencode_time): Doc fix ("daylight
92 savings" to "daylight saving").
93
12007-03-11 Sam Steingold <sds@gnu.org> 942007-03-11 Sam Steingold <sds@gnu.org>
2 95
3 * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop. 96 * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop.
@@ -8,8 +101,8 @@
8 101
92007-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 1022007-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10 103
11 * macterm.c [USE_CARBON_EVENTS] (mac_handle_mouse_event): Ignore 104 * macterm.c [USE_CARBON_EVENTS] (mac_handle_mouse_event):
12 mouse wheel movement on title bar or tool bar. 105 Ignore mouse wheel movement on title bar or tool bar.
13 106
142007-03-10 Chong Yidong <cyd@stupidchicken.com> 1072007-03-10 Chong Yidong <cyd@stupidchicken.com>
15 108