From: tomo Date: Fri, 4 Jun 1999 02:17:15 +0000 (+0000) Subject: (coding_system_from_mask): Use `raw-text' instead of `no-conversion'. X-Git-Tag: r21_2_14-raw-text-2~5 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b3ecd5b07da3f387c64e10b628fb76da9b87a916;p=chise%2Fxemacs-chise.git- (coding_system_from_mask): Use `raw-text' instead of `no-conversion'. (complex_vars_of_mule_coding): Use `raw-text' as the coding-system of coding-category `no-conversion'. --- diff --git a/src/file-coding.c b/src/file-coding.c index a288821..0b4f6c1 100644 --- a/src/file-coding.c +++ b/src/file-coding.c @@ -1531,7 +1531,7 @@ coding_system_from_mask (int mask) } } if (NILP (retval)) - retval = Fget_coding_system (Qno_conversion); + retval = Fget_coding_system (Qraw_text); return retval; } else @@ -1553,7 +1553,7 @@ coding_system_from_mask (int mask) if (cat >= 0) return coding_category_system[cat]; else - return Fget_coding_system (Qno_conversion); + return Fget_coding_system (Qraw_text); } } @@ -5659,7 +5659,7 @@ complex_vars_of_mule_coding (void) /* Need this for bootstrapping */ coding_category_system[CODING_CATEGORY_NO_CONVERSION] = - Fget_coding_system (Qno_conversion); + Fget_coding_system (Qraw_text); #ifdef MULE {