Mercurial > emacs
changeset 51357:4830e98be217
(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) <Qauto_save_coding>: Intern and staticpro it.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 31 May 2003 01:58:13 +0000 |
parents | 8da3b8a0ca4f |
children | f827a37d5c82 |
files | src/fileio.c |
diffstat | 1 files changed, 31 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Sat May 31 00:56:42 2003 +0000 +++ b/src/fileio.c Sat May 31 01:58:13 2003 +0000 @@ -154,6 +154,13 @@ a new file with the same mode as the original */ int auto_save_mode_bits; +/* The symbol bound to coding-system-for-read when + insert-file-contents is called for recovering a file. This is not + an actual coding system name, but just an indicator to tell + insert-file-contents to use `emacs-mule' with a special flag for + auto saving and recovering a file. */ +Lisp_Object Qauto_save_coding; + /* Coding system for file names, or nil if none. */ Lisp_Object Vfile_name_coding_system; @@ -3764,7 +3771,20 @@ } } - if (BEG < Z) + if (EQ (Vcoding_system_for_read, Qauto_save_coding)) + { + /* We use emacs-mule for auto saving... */ + setup_coding_system (Qemacs_mule, &coding); + /* ... but with the special flag to indicate to read in a + multibyte sequence for eight-bit-control char as is. */ + coding.flags = 1; + coding.src_multibyte = 0; + coding.dst_multibyte + = !NILP (current_buffer->enable_multibyte_characters); + coding.eol_type = CODING_EOL_LF; + coding_system_decided = 1; + } + else if (BEG < Z) { /* Decide the coding system to use for reading the file now because we can't use an optimized method for handling @@ -4663,7 +4683,14 @@ Lisp_Object val; if (auto_saving) - val = Qnil; + { + /* We use emacs-mule for auto saving... */ + setup_coding_system (Qemacs_mule, coding); + /* ... but with the special flag to indicate not to strip off + leading code of eight-bit-control chars. */ + coding->flags = 1; + goto done_setup_coding; + } else if (!NILP (Vcoding_system_for_write)) { val = Vcoding_system_for_write; @@ -6294,6 +6321,7 @@ Qwrite_region = intern ("write-region"); Qverify_visited_file_modtime = intern ("verify-visited-file-modtime"); Qset_visited_file_modtime = intern ("set-visited-file-modtime"); + Qauto_save_coding = intern ("auto-save-coding"); staticpro (&Qexpand_file_name); staticpro (&Qsubstitute_in_file_name); @@ -6326,6 +6354,7 @@ staticpro (&Qwrite_region); staticpro (&Qverify_visited_file_modtime); staticpro (&Qset_visited_file_modtime); + staticpro (&Qauto_save_coding); Qfile_name_history = intern ("file-name-history"); Fset (Qfile_name_history, Qnil);