mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
* international/mule.el (define-coding-system): Fix typos in docstring.
This commit is contained in:
parent
49be4f8800
commit
3dabda23e5
2 changed files with 7 additions and 3 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2009-01-06 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* international/mule.el (define-coding-system): Fix typos in docstring.
|
||||
|
||||
2009-01-05 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
* progmodes/cc-styles.el (c-setup-paragraph-variables): Ensure
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ Distribution date of this version of MULE (multilingual environment).")
|
|||
(defvar emacs-mule-charset-table (make-vector 256 nil))
|
||||
(aset emacs-mule-charset-table 0 'ascii)
|
||||
|
||||
;; Convert the argument of old-style calll of define-charset to a
|
||||
;; Convert the argument of old-style call of define-charset to a
|
||||
;; property list used by the new-style.
|
||||
;; INFO-VECTOR is a vector of the format:
|
||||
;; [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE
|
||||
|
|
@ -719,9 +719,9 @@ BOM, and on encoding, don't produce BOM bytes.
|
|||
If the value is t, on decoding, skip the first two-byte as BOM, and on
|
||||
encoding, produce BOM bytes accoding to the value of `:endian'.
|
||||
|
||||
If the value is cons, on decoding, check the first two-byte. If theyq
|
||||
If the value is cons, on decoding, check the first two-byte. If they
|
||||
are 0xFE 0xFF, use the car part coding system of the value. If they
|
||||
are 0xFF 0xFE, use the car part coding system of the value.
|
||||
are 0xFF 0xFE, use the cdr part coding system of the value.
|
||||
Otherwise, treat them as bytes for a normal character. On encoding,
|
||||
produce BOM bytes accoding to the value of `:endian'.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue