aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/nxml
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-11-28 04:55:27 +0000
committerGlenn Morris <[email protected]>2007-11-28 04:55:27 +0000
commit9e02db22e898f1ad81b37aaf9c30cb1d269408c7 (patch)
tree157a122b6a10ed55eb28bda11d6ee3ef9384bdc8 /lisp/nxml
parent6bf181fbdfcc37348ac711008f85ddecc42ba015 (diff)
(top-level): Adapt for moved unicode files.
Diffstat (limited to 'lisp/nxml')
-rw-r--r--lisp/nxml/nxml-uchnm.el20
1 files changed, 9 insertions, 11 deletions
diff --git a/lisp/nxml/nxml-uchnm.el b/lisp/nxml/nxml-uchnm.el
index 892a81e04a..9514a7de47 100644
--- a/lisp/nxml/nxml-uchnm.el
+++ b/lisp/nxml/nxml-uchnm.el
@@ -203,17 +203,15 @@ by a hyphen."
mathematical-alphanumeric-symbols)
"Default value for `nxml-enabled-unicode-blocks'.")
-(let ((dir (file-name-directory load-file-name)))
- (mapc (lambda (block)
- (let ((sym (nxml-unicode-block-char-name-set (car block))))
- (nxml-autoload-char-name-set
- sym
- (expand-file-name
- (format "char-name/unicode/%05X-%05X"
- (nth 1 block)
- (nth 2 block))
- dir))))
- nxml-unicode-blocks))
+(mapc (lambda (block)
+ (nxml-autoload-char-name-set
+ (nxml-unicode-block-char-name-set (car block))
+ (expand-file-name
+ (format "nxml/%05X-%05X"
+ (nth 1 block)
+ (nth 2 block))
+ data-directory)))
+ nxml-unicode-blocks)
(defvar nxml-enable-unicode-char-name-sets-flag nil)