Changeset 4085 for trunk/src/coding.c
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/src/coding.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/coding.c
r4079 r4085 364 364 Lisp_Object Qsafe_chars; 365 365 Lisp_Object Qvalid_codes; 366 Lisp_Object Qascii_incompatible; 366 367 367 368 extern Lisp_Object Qinsert_file_contents, Qwrite_region; … … 3626 3627 } 3627 3628 else 3628 coding->eol_type = CODING_EOL_LF; 3629 { 3630 coding->common_flags = 0; 3631 coding->eol_type = CODING_EOL_LF; 3632 } 3629 3633 3630 3634 coding_type = XVECTOR (coding_spec)->contents[0]; … … 3685 3689 if (!NILP (val)) 3686 3690 coding->composing = COMPOSITION_NO; 3691 3692 /* If the coding system is ascii-incompatible, record it in 3693 common_flags. */ 3694 val = Fplist_get (plist, Qascii_incompatible); 3695 if (! NILP (val)) 3696 coding->common_flags |= CODING_ASCII_INCOMPATIBLE_MASK; 3687 3697 3688 3698 switch (XFASTINT (coding_type)) … … 7833 7843 staticpro (&Qvalid_codes); 7834 7844 7845 Qascii_incompatible = intern ("ascii-incompatible"); 7846 staticpro (&Qascii_incompatible); 7847 7835 7848 Qemacs_mule = intern ("emacs-mule"); 7836 7849 staticpro (&Qemacs_mule);
