diff options
| author | Miles Bader | 2006-08-16 14:08:49 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-08-16 14:08:49 +0000 |
| commit | de20e0ccdb039a2ac27e5bbd3e06ab70c4e7bb65 (patch) | |
| tree | 80243ce02b52cbf7945c614bd213dd63142b861a /src/ChangeLog | |
| parent | 7a5c2a42040b12b037940a067aee6ac6fde01680 (diff) | |
| parent | 5ebdc2990a95cc38b21f772eea4de3ceee149e54 (diff) | |
| download | emacs-de20e0ccdb039a2ac27e5bbd3e06ab70c4e7bb65.tar.gz emacs-de20e0ccdb039a2ac27e5bbd3e06ab70c4e7bb65.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 382-398)
- Update from CVS
- Update from erc--emacs--22
- Fix ERC bug introduced in last patch
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 123-125)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-101
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 135 |
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 @@ | |||
| 1 | 2006-08-16 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * print.c (debug_output_compilation_hack): Fix return type. | ||
| 4 | |||
| 5 | 2006-08-16 Richard Stallman <rms@gnu.org> | ||
| 6 | |||
| 7 | * print.c (debug_output_compilation_hack): New function. | ||
| 8 | |||
| 9 | 2006-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 | |||
| 14 | 2006-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 | |||
| 19 | 2006-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 | |||
| 28 | 2006-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 | |||
| 33 | 2006-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 | |||
| 38 | 2006-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 | |||
| 43 | 2006-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 | |||
| 56 | 2006-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 | |||
| 67 | 2006-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 | |||
| 73 | 2006-08-09 Kenichi Handa <handa@m17n.org> | ||
| 74 | |||
| 75 | * coding.c (syms_of_coding): Improve the docstring | ||
| 76 | file-coding-system-alist. | ||
| 77 | |||
| 78 | 2006-08-07 Andreas Schwab <schwab@suse.de> | ||
| 79 | |||
| 80 | * puresize.h (BASE_PURESIZE): Increase to 1120000. | ||
| 81 | |||
| 82 | 2006-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 | |||
| 88 | 2006-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 | |||
| 101 | 2006-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 | |||
| 107 | 2006-08-04 Eli Zaretskii <eliz@gnu.org> | ||
| 108 | |||
| 109 | * w32fns.c (w32_query_font): Fix last change: use stricmp. | ||
| 110 | |||
| 111 | 2006-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 | |||
| 116 | 2006-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 | |||
| 121 | 2006-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 | |||
| 127 | 2006-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 | |||
| 132 | 2006-08-03 Chong Yidong <cyd@stupidchicken.com> | ||
| 133 | |||
| 134 | * process.c: Revert last change. | ||
| 135 | |||
| 1 | 2006-08-01 Kim F. Storm <storm@cua.dk> | 136 | 2006-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. |