/[emacs]/emacs/src/coding.c
ViewVC logotype

Diff of /emacs/src/coding.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.239.2.37 by handa, Thu Oct 10 09:05:37 2002 UTC revision 1.239.2.38 by handa, Tue Oct 15 01:15:52 2002 UTC
# Line 5584  decode_coding (coding) Line 5584  decode_coding (coding)
5584        coding->annotated = 0;        coding->annotated = 0;
5585        (*(coding->decoder)) (coding);        (*(coding->decoder)) (coding);
5586        if (!NILP (CODING_ATTR_DECODE_TBL (attrs)))        if (!NILP (CODING_ATTR_DECODE_TBL (attrs)))
5587          translate_chars (CODING_ATTR_DECODE_TBL (attrs), coding);          translate_chars (coding, CODING_ATTR_DECODE_TBL (attrs));
5588          else if (!NILP (Vstandard_translation_table_for_decode))
5589            translate_chars (coding, Vstandard_translation_table_for_decode);
5590        coding_set_destination (coding);        coding_set_destination (coding);
5591        produce_chars (coding);        produce_chars (coding);
5592        if (coding->annotated)        if (coding->annotated)
# Line 5768  encode_coding (coding) Line 5770  encode_coding (coding)
5770      consume_chars (coding);      consume_chars (coding);
5771    
5772      if (!NILP (CODING_ATTR_ENCODE_TBL (attrs)))      if (!NILP (CODING_ATTR_ENCODE_TBL (attrs)))
5773        translate_chars (CODING_ATTR_ENCODE_TBL (attrs), coding);        translate_chars (coding, CODING_ATTR_ENCODE_TBL (attrs));
5774        else if (!NILP (Vstandard_translation_table_for_encode))
5775          translate_chars (coding, Vstandard_translation_table_for_encode);
5776    
5777      coding_set_destination (coding);      coding_set_destination (coding);
5778      (*(coding->encoder)) (coding);      (*(coding->encoder)) (coding);

Legend:
Removed from v.1.239.2.37  
changed lines
  Added in v.1.239.2.38

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26