diff options
author | Glenn Morris <rgm@gnu.org> | 2015-05-15 18:33:09 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-05-15 18:33:09 -0400 |
commit | c7e93c41078193d4df8ca165d3aea50a51c40519 (patch) | |
tree | 3df4b4941a8e47100142d22a312c506cefe5fda3 /admin/charsets | |
parent | b00168e833ccca1b5c0eebe56688ec44e0efabe7 (diff) | |
download | emacs-c7e93c41078193d4df8ca165d3aea50a51c40519.tar.gz emacs-c7e93c41078193d4df8ca165d3aea50a51c40519.tar.bz2 emacs-c7e93c41078193d4df8ca165d3aea50a51c40519.zip |
Tweak japanese.el's loading of dependencies.
* lisp/loadup.el: Explicitly load cp51932 and eucjp-ms.
* lisp/language/japanese.el: Use require rather than load.
* lisp/international/cp51932.el, lisp/international/eucjp-ms.el:
Provide a feature.
* admin/charsets/eucjp-ms.awk, admin/charsets/cp51932.awk:
Provide a feature in the generated file.
Diffstat (limited to 'admin/charsets')
-rw-r--r-- | admin/charsets/cp51932.awk | 2 | ||||
-rw-r--r-- | admin/charsets/eucjp-ms.awk | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/admin/charsets/cp51932.awk b/admin/charsets/cp51932.awk index c8879b30200..f59e91cdb9c 100644 --- a/admin/charsets/cp51932.awk +++ b/admin/charsets/cp51932.awk @@ -52,4 +52,6 @@ END { print " (setcar x (cdr x)) (setcdr x tmp)))"; print " map)"; print " (define-translation-table 'cp51932-encode map))"; + print ""; + print "(provide 'cp51932)"; } diff --git a/admin/charsets/eucjp-ms.awk b/admin/charsets/eucjp-ms.awk index 18c19f5fb55..f17222d901e 100644 --- a/admin/charsets/eucjp-ms.awk +++ b/admin/charsets/eucjp-ms.awk @@ -106,5 +106,7 @@ END { print " (setcar x (cdr x)) (setcdr x tmp)))"; print " map)"; print " (define-translation-table 'eucjp-ms-encode map))"; + print ""; + print "(provide 'eucjp-ms)"; } |