diff options
| author | YAMAMOTO Mitsuharu | 2007-03-20 08:51:41 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2007-03-20 08:51:41 +0000 |
| commit | 87f4728fd31815c23c785277c3666dd1480060e7 (patch) | |
| tree | 995e19a85bf16ad75736a8585eb45d5bd91efd3f /src/ChangeLog | |
| parent | 1a935bfd5921b8efa4e913a8663dcea83e0fb4d1 (diff) | |
| download | emacs-87f4728fd31815c23c785277c3666dd1480060e7.tar.gz emacs-87f4728fd31815c23c785277c3666dd1480060e7.zip | |
*** empty log message ***
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 83a32eaf8f6..76414a593f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,37 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-03-19 Richard Stallman <rms@gnu.org> | 35 | 2007-03-19 Richard Stallman <rms@gnu.org> |
| 2 | 36 | ||
| 3 | * keyboard.c (NUM_RECENT_KEYS): Bump up to 300. | 37 | * keyboard.c (NUM_RECENT_KEYS): Bump up to 300. |