/[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.289.2.6 by schwab, Mon Oct 6 22:30:26 2003 UTC revision 1.289.2.7 by handa, Sat Nov 22 11:20:05 2003 UTC
# Line 2125  encode_coding_emacs_mule (coding) Line 2125  encode_coding_emacs_mule (coding)
2125            if (leading_codes[1])            if (leading_codes[1])
2126              EMIT_ONE_BYTE (leading_codes[1]);              EMIT_ONE_BYTE (leading_codes[1]);
2127            if (dimension == 1)            if (dimension == 1)
2128              EMIT_ONE_BYTE (code);              EMIT_ONE_BYTE (code | 0x80);
2129            else            else
2130              {              {
2131                  code |= 0x8080;
2132                EMIT_ONE_BYTE (code >> 8);                EMIT_ONE_BYTE (code >> 8);
2133                EMIT_ONE_BYTE (code & 0xFF);                EMIT_ONE_BYTE (code & 0xFF);
2134              }              }

Legend:
Removed from v.1.289.2.6  
changed lines
  Added in v.1.289.2.7

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