aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-01-06 02:05:34 +0000
committerJuanma Barranquero2009-01-06 02:05:34 +0000
commit3dabda23e507ade89009aa5609c44fa0d90c9105 (patch)
treeebda6285679d16065899ccec8a031ae103386684
parent49be4f8800b854f19cfbccc5aeeef92330d6b2ea (diff)
downloademacs-3dabda23e507ade89009aa5609c44fa0d90c9105.tar.gz
emacs-3dabda23e507ade89009aa5609c44fa0d90c9105.zip
* international/mule.el (define-coding-system): Fix typos in docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/international/mule.el6
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 86b74426435..bd394143d9a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-01-06 Juanma Barranquero <lekktu@gmail.com>
2
3 * international/mule.el (define-coding-system): Fix typos in docstring.
4
12009-01-05 Alan Mackenzie <acm@muc.de> 52009-01-05 Alan Mackenzie <acm@muc.de>
2 6
3 * progmodes/cc-styles.el (c-setup-paragraph-variables): Ensure 7 * progmodes/cc-styles.el (c-setup-paragraph-variables): Ensure
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 84fb06db5d4..76ee7991746 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -50,7 +50,7 @@ Distribution date of this version of MULE (multilingual environment).")
50(defvar emacs-mule-charset-table (make-vector 256 nil)) 50(defvar emacs-mule-charset-table (make-vector 256 nil))
51(aset emacs-mule-charset-table 0 'ascii) 51(aset emacs-mule-charset-table 0 'ascii)
52 52
53;; Convert the argument of old-style calll of define-charset to a 53;; Convert the argument of old-style call of define-charset to a
54;; property list used by the new-style. 54;; property list used by the new-style.
55;; INFO-VECTOR is a vector of the format: 55;; INFO-VECTOR is a vector of the format:
56;; [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE 56;; [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE
@@ -719,9 +719,9 @@ BOM, and on encoding, don't produce BOM bytes.
719If the value is t, on decoding, skip the first two-byte as BOM, and on 719If the value is t, on decoding, skip the first two-byte as BOM, and on
720encoding, produce BOM bytes accoding to the value of `:endian'. 720encoding, produce BOM bytes accoding to the value of `:endian'.
721 721
722If the value is cons, on decoding, check the first two-byte. If theyq 722If the value is cons, on decoding, check the first two-byte. If they
723are 0xFE 0xFF, use the car part coding system of the value. If they 723are 0xFE 0xFF, use the car part coding system of the value. If they
724are 0xFF 0xFE, use the car part coding system of the value. 724are 0xFF 0xFE, use the cdr part coding system of the value.
725Otherwise, treat them as bytes for a normal character. On encoding, 725Otherwise, treat them as bytes for a normal character. On encoding,
726produce BOM bytes accoding to the value of `:endian'. 726produce BOM bytes accoding to the value of `:endian'.
727 727