# HG changeset patch # User Kenichi Handa # Date 1110273018 0 # Node ID 7211619644bbe3e4169a947a8f793c958fe0d271 # Parent 322d95d05b231c5831e8a424bbd1a2a13cb403c1 (ccl-encode-mule-utf-16le-with-signature): Fix BUFFER_MAGNIFICATION to 2. (ccl-encode-mule-utf-16be-with-signature): Likewise. diff -r 322d95d05b23 -r 7211619644bb lisp/international/utf-16.el --- a/lisp/international/utf-16.el Tue Mar 08 09:09:28 2005 +0000 +++ b/lisp/international/utf-16.el Tue Mar 08 09:10:18 2005 +0000 @@ -411,7 +411,7 @@ 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 @@ 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))