aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2009-01-07 12:33:14 +0000
committerKenichi Handa2009-01-07 12:33:14 +0000
commite48214824f2468d4e6cb1f34967bd2b48335edc8 (patch)
treed88c93d7010eadb8ce6e29ed9f22126244346570
parent50b062219484473b4369e80de5f1704642db63f5 (diff)
downloademacs-e48214824f2468d4e6cb1f34967bd2b48335edc8.tar.gz
emacs-e48214824f2468d4e6cb1f34967bd2b48335edc8.zip
(define-coding-system): Fix docstring about :bom usage.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 347e8c0c599..09c9c4ad63b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-01-07 Kenichi Handa <handa@m17n.org>
2
3 * international/mule.el (define-coding-system): Fix docstring
4 about :bom usage.
5
12009-01-07 Martin Rudalics <rudalics@gmx.at> 62009-01-07 Martin Rudalics <rudalics@gmx.at>
2 7
3 * dired.el (dired-pop-to-buffer): Don't split windows 8 * dired.el (dired-pop-to-buffer): Don't split windows
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 76ee7991746..fed9eec025b 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -711,7 +711,7 @@ This attribute has a meaning only when `:coding-type' is `iso-2022'.
711 711
712This attributes specifies whether the coding system uses a `byte order 712This attributes specifies whether the coding system uses a `byte order
713mark'. VALUE must nil, t, or cons of coding systems whose 713mark'. VALUE must nil, t, or cons of coding systems whose
714`:coding-type' is `utf-16'. 714`:coding-type' is `utf-16' or `utf-8'.
715 715
716If the value is nil, on decoding, don't treat the first two-byte as 716If the value is nil, on decoding, don't treat the first two-byte as
717BOM, and on encoding, don't produce BOM bytes. 717BOM, and on encoding, don't produce BOM bytes.