aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorKenichi Handa2002-05-14 08:01:50 +0000
committerKenichi Handa2002-05-14 08:01:50 +0000
commit5afaefc1183a0823555a9ec9a75cbed1c6705695 (patch)
tree2b7892bcf4a6cb4d1443fa23b138152d98553edc /src/coding.h
parent004068e4fc1d272f97cba4a49cbf47b606723ec0 (diff)
downloademacs-5afaefc1183a0823555a9ec9a75cbed1c6705695.tar.gz
emacs-5afaefc1183a0823555a9ec9a75cbed1c6705695.zip
(JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.h b/src/coding.h
index cc115b6ef3f..1b14ff445f3 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -473,7 +473,7 @@ struct coding_system
473 else \ 473 else \
474 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0), \ 474 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0), \
475 s2 = j2 + 0x7E); \ 475 s2 = j2 + 0x7E); \
476 (code) = (j1 << 8) | j2; \ 476 (code) = (s1 << 8) | s2; \
477 } while (0) 477 } while (0)
478 478
479 479