From: Karl Heuer Date: Wed, 3 Jun 1998 14:41:27 +0000 (+0000) Subject: (DECODE_FILE, ENCODE_FILE): X-Git-Tag: emacs-20.3~735 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afee9150208892aada7bb3c60cc6b2357e620c72;p=emacs.git (DECODE_FILE, ENCODE_FILE): Use code_convert_string_norecord. --- diff --git a/src/coding.h b/src/coding.h index 5fa42643ca0..dc4d8c540c7 100644 --- a/src/coding.h +++ b/src/coding.h @@ -493,10 +493,10 @@ struct coding_system #define ENCODE_FILE(name) \ (! NILP (Vfile_name_coding_system) \ && XFASTINT (Vfile_name_coding_system) != 0 \ - ? Fencode_coding_string (name, Vfile_name_coding_system, Qt) \ + ? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \ : (! NILP (Vdefault_file_name_coding_system) \ - && XFASTINT (Vdefault_file_name_coding_system) \ - ? Fencode_coding_string (name, Vdefault_file_name_coding_system, Qt) \ + && XFASTINT (Vdefault_file_name_coding_system) != 0 \ + ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \ : name)) /* Decode the file name NAME using the specified coding system @@ -504,10 +504,10 @@ struct coding_system #define DECODE_FILE(name) \ (! NILP (Vfile_name_coding_system) \ && XFASTINT (Vfile_name_coding_system) != 0 \ - ? Fdecode_coding_string (name, Vfile_name_coding_system, Qt) \ + ? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \ : (! NILP (Vdefault_file_name_coding_system) \ - && XFASTINT (Vdefault_file_name_coding_system) \ - ? Fdecode_coding_string (name, Vdefault_file_name_coding_system, Qt) \ + && XFASTINT (Vdefault_file_name_coding_system) != 0 \ + ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \ : name)) /* Extern declarations. */