(ccl-encode-mule-utf-16le-with-signature):
Fix BUFFER_MAGNIFICATION to 2. (ccl-encode-mule-utf-16be-with-signature): Likewise.
This commit is contained in:
parent
d2968c52db
commit
f7c4d755be
1 changed files with 2 additions and 2 deletions
|
@ -411,7 +411,7 @@ after translation through the translation-table named
|
|||
Others are encoded as U+FFFD.")
|
||||
|
||||
(define-ccl-program ccl-encode-mule-utf-16le-with-signature
|
||||
`(4
|
||||
`(2
|
||||
((write #xFF)
|
||||
(write #xFE)
|
||||
,@utf-16le-encode-loop))
|
||||
|
@ -423,7 +423,7 @@ after translation through the translation-table of name
|
|||
Others are encoded as U+FFFD.")
|
||||
|
||||
(define-ccl-program ccl-encode-mule-utf-16be-with-signature
|
||||
`(4
|
||||
`(2
|
||||
((write #xFE)
|
||||
(write #xFF)
|
||||
,@utf-16be-encode-loop))
|
||||
|
|
Loading…
Add table
Reference in a new issue