Show
Ignore:
Timestamp:
08/10/06 11:19:54 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog

    r4131 r4140  
     12006-08-09  Richard Stallman  <rms@gnu.org> 
     2 
     3        * keyboard.c (keyremap_step): No-op if fkey->parent = nil. 
     4        (read_key_sequence): Always start fkey.start and fkey.end at 0, 
     5        and likewise for keytran. 
     6 
     72006-08-09  Kenichi Handa  <handa@m17n.org> 
     8 
     9        * coding.c (syms_of_coding): Improve the docstring 
     10        file-coding-system-alist. 
     11 
     122006-08-07  Andreas Schwab  <schwab@suse.de> 
     13 
     14        * puresize.h (BASE_PURESIZE): Increase to 1120000. 
     15 
     162006-08-06  Chong Yidong  <cyd@stupidchicken.com> 
     17 
     18        * buffer.c (Vchange_major_mode_hook, Qchange_major_mode_hook): New vars. 
     19        (Fkill_all_local_variables): Use it. 
     20        (syms_of_buffer): Defvar it. 
     21 
     222006-08-05  Eli Zaretskii  <eliz@gnu.org> 
     23 
     24        * w32.c (w32_valid_pointer_p): New function. 
     25 
     26        * w32.h: Add prototype for w32_valid_pointer_p. 
     27 
     28        * alloc.c: Include w32.h. 
     29        (valid_lisp_object_p) [WINDOWSNT]: Call w32_valid_pointer_p to do 
     30        the job. 
     31 
     32        * keyboard.c (kbd_buffer_get_event): Return Qnil when current time 
     33        is exactly equal to end_time, not only when it is past that. 
     34 
     352006-08-04  Chong Yidong  <cyd@stupidchicken.com> 
     36 
     37        * keyboard.c (read_char): Rebalance specpdl after receiving jump. 
     38 
     39        * process.c: Reapply 2006-08-01 change. 
     40 
     412006-08-04  Eli Zaretskii  <eliz@gnu.org> 
     42 
     43        * w32fns.c (w32_query_font): Fix last change: use stricmp. 
     44 
     452006-08-04  Stefan Monnier  <monnier@iro.umontreal.ca> 
     46 
     47        * editfns.c (Fsubst_char_in_region): Redo the setup work after running 
     48        the before-change-functions since they may have altered the buffer. 
     49 
     502006-08-04  Ralf Angeli  <angeli@caeruleus.net> 
     51 
     52        * w32fns.c (w32_createwindow): Handle -geometry command line option 
     53        and the geometry settings in the Registry. 
     54 
     552006-08-04  Kenichi Handa  <handa@m17n.org> 
     56 
     57        * w32fns.c (w32_query_font): Compare names by ignoring case. 
     58 
     59        * xterm.c (x_query_font): Compare names by ignoring case. 
     60 
     612006-08-03  Jason Rumney  <jasonr@gnu.org> 
     62 
     63        * w32menu.c (w32_menu_show, w32_dialog_show): Call Fsignal to quit 
     64        when no option selected. 
     65 
     662006-08-03  Chong Yidong  <cyd@stupidchicken.com> 
     67 
     68        * process.c: Revert last change. 
     69 
     702006-08-01  Kim F. Storm  <storm@cua.dk> 
     71 
     72        * process.c (wait_reading_process_output_unwind): New function. 
     73        Restores waiting_for_user_input_p to saved value. 
     74        (wait_reading_process_output): Unwind protect waiting_for_user_input_p 
     75        instead of save/restore old value on stack. 
     76 
     772006-07-30  Thien-Thi Nguyen  <ttn@gnu.org> 
     78 
     79        * editfns.c: Undo 2006-06-27 change. 
     80 
     812006-07-29  Eli Zaretskii  <eliz@gnu.org> 
     82 
     83        * coding.c (Ffind_operation_coding_system): Revert the change from 
     84        2006-05-29. 
     85 
     86        * alloc.c [WINDOWSNT]: Include fcntl.h, to fix last change. 
     87 
     882006-07-28  Richard Stallman  <rms@gnu.org> 
     89 
     90        * xfaces.c (lookup_named_face, Fdisplay_supports_face_attributes_p): 
     91        Add conditional aborts for clarity. 
     92 
     93        * xdisp.c (update_menu_bar): New arg HOOKS_RUN.  Callers changed. 
     94        Used to avoid running the hooks over and over for each frame. 
     95        (prepare_menu_bars): Pass value from update_menu_bar 
     96        as HOOKS_RUN of next call. 
     97 
     98        * keyboard.c (safe_run_hooks_1): Don't crash if Vrun_hooks is nil. 
     99 
    11002006-07-28  Kim F. Storm  <storm@cua.dk> 
    2101 
     
    182281        (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel. 
    183282        (x_delete_display): Apply 2006-07-04 change for xterm.c. 
     283 
     2842006-07-17  Richard Stallman  <rms@gnu.org> 
     285 
     286        * keyboard.c (Vcommand_error_function): New variable. 
     287        (syms_of_keyboard): Defvar it. 
     288        (cmd_error_internal): Simplify, and handle Vcommand_error_function. 
     289 
     290        * dispnew.c (init_display): Mention DISPLAY as well as TERM in err msg. 
    184291 
    1852922006-07-17  Kim F. Storm  <storm@cua.dk>