projects
/
chise
/
xemacs-chise.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93300aa
)
(write-char-range-data-to-file): Insert coding: magic cookie.
author
tomo
<tomo>
Sat, 8 Nov 2003 07:55:43 +0000
(07:55 +0000)
committer
tomo
<tomo>
Sat, 8 Nov 2003 07:55:43 +0000
(07:55 +0000)
lisp/utf-2000/char-db-util.el
patch
|
blob
|
history
diff --git
a/lisp/utf-2000/char-db-util.el
b/lisp/utf-2000/char-db-util.el
index
e89bfa5
..
df81a7a
100644
(file)
--- a/
lisp/utf-2000/char-db-util.el
+++ b/
lisp/utf-2000/char-db-util.el
@@
-1090,8
+1090,9
@@
(defun write-char-range-data-to-file (min max file
&optional script excluded-script)
- (let ((coding-system-for-write 'utf-8))
+ (let ((coding-system-for-write 'utf-8-mcs))
(with-temp-buffer
+ (insert ";; -*- coding: utf-8-mcs -*-\n")
(insert-char-range-data min max script excluded-script)
(write-region (point-min)(point-max) file))))