diff options
author | Kenichi Handa <handa@m17n.org> | 2005-05-10 02:31:28 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2005-05-10 02:31:28 +0000 |
commit | 90ce1bb946556d245138226f2b175415f79e3146 (patch) | |
tree | 1752add256a0c41dd4ce32a1045dc010f1f0ef63 /lisp/loadup.el | |
parent | 4d335bfc21c5f92452b11c0a591e70174547f83c (diff) | |
download | emacs-90ce1bb946556d245138226f2b175415f79e3146.tar.gz |
Load international/charprop.el with NOERROR t.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 4cc6ebbff0f..384f0d97004 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -86,7 +86,9 @@ (load "case-table") (load "composite") (load "international/characters") -(load "international/charprop.el") +;; This file doesn't exist when building Emacs from CVS. It is +;; generated just after temacs is build. +(load "international/charprop.el" t) ;; Load language-specific files. (load "language/chinese") |