# HG changeset patch # User Kenichi Handa # Date 1054346522 0 # Node ID 24e32b75730a00dc17c6b319d95354d046260ef3 # Parent f827a37d5c82717e1a5c185c54e7c9a351f4e502 *** empty log message *** diff -r f827a37d5c82 -r 24e32b75730a lisp/ChangeLog --- a/lisp/ChangeLog Sat May 31 02:00:26 2003 +0000 +++ b/lisp/ChangeLog Sat May 31 02:02:02 2003 +0000 @@ -1,3 +1,8 @@ +2003-05-31 Kenichi Handa + + * files.el (recover-file): Bind coding-system-for-read to + auto-save-coding. + 2003-05-31 Juanma Barranquero * misc.el (mark-beginning-of-buffer, mark-end-of-buffer) diff -r f827a37d5c82 -r 24e32b75730a src/ChangeLog --- a/src/ChangeLog Sat May 31 02:00:26 2003 +0000 +++ b/src/ChangeLog Sat May 31 02:02:02 2003 +0000 @@ -3,12 +3,27 @@ * charset.h (VALID_LEADING_CODE_P): New macro. (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly. + * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags + is nonzero, accept multibyte form of eight-bit-control chars. + (decode_composition_emacs_mule): Likewise. + (decode_coding_emacs_mule): Likewise. + (encode_coding_emacs_mule): If coding->flags is nonzero, produce + multibyte form of eight-bit-control chars. + + * fileio.c (Qauto_save_coding, auto_save_coding): New variables. + (Finsert_file_contents): If coding-system-for-read is bound to + Qauto_save_coding, use the coding system emacs-mule with special + setting for recovering a file. + (choose_write_coding_system): On auto saving, use the coding + system emacs-mule with special setting for auto saving. + (syms_of_fileio) : Intern and staticpro it. + 2003-05-30 Kenichi Handa * coding.c (ccl_coding_driver): Set ccl->eight_bit_control properly before calling ccl_driver. - * ccl.h (struct ccl_program) : Comment fixed. * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is nonzero.