summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2017-04-26 12:51:48 -0400
committerGlenn Morris <rgm@gnu.org>2017-04-26 12:51:48 -0400
commit8f2062d96b0319fc2a837ba9e2c6b67abf31c920 (patch)
tree32962ec255b4bcc22af831c50cb139abc2aaccc2
parentefb4ea9987c7b2ee6f7a66c0bc02c907ca987a24 (diff)
downloademacs-8f2062d96b0319fc2a837ba9e2c6b67abf31c920.tar.gz
Make charprop.el provide a feature
* admin/unidata/unidata-gen.el (unidata-gen-charprop): Provide a feature. * lisp/loadup.el: Use the charprop feature.
-rw-r--r--admin/unidata/unidata-gen.el5
-rw-r--r--lisp/loadup.el6
2 files changed, 7 insertions, 4 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index cdd7ff01db4..64e2babd4b9 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -1450,7 +1450,10 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
(unidata-prop-prop proplist) (car elt)
(unidata-prop-docstring proplist)))))
(or noninteractive (message "Writing %s..." charprop-file))
- (insert ";; Local Variables:\n"
+ (insert "\n"
+ "(provide 'charprop)\n"
+ " \n"
+ ";; Local Variables:\n"
";; coding: utf-8\n"
";; version-control: never\n"
";; no-byte-compile: t\n"
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 4f28352d39e..af42cd97111 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -184,8 +184,8 @@
(load "case-table")
;; This file doesn't exist when building a development version of Emacs
;; from the repository. It is generated just after temacs is built.
-(if ; this formatting is for the Makefile
- (load "international/charprop.el" t)
+(load "international/charprop.el" t)
+(if (featurep 'charprop)
(setq redisplay--inhibit-bidi nil))
(load "international/characters")
(load "composite")
@@ -303,7 +303,7 @@
;; Don't load ucs-normalize.el unless uni-*.el files were
;; already produced, because it needs uni-*.el files that might
;; not be built early enough during bootstrap.
- (when (load-history-filename-element "charprop\\.el")
+ (when (featurep 'charprop)
(load "international/mule-util")
(load "international/ucs-normalize")
(load "term/ns-win"))))