Further refactoring in unidata-gen.el
* admin/unidata/unidata-gen.el (unidata-gen-charprop): New function, split from unidata-gen-files. (unidata-gen-files): Use unidata-gen-charprop.
This commit is contained in:
parent
735ae5cd3a
commit
c1e71d3899
1 changed files with 23 additions and 22 deletions
|
|
@ -1434,6 +1434,25 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
|
|||
(format ";; %s ends here\n" basename)))))
|
||||
(or noninteractive (message "Generating %s...done" file)))
|
||||
|
||||
(defun unidata-gen-charprop (&optional charprop-file)
|
||||
(or charprop-file (setq charprop-file (pop command-line-args-left)))
|
||||
(with-temp-file charprop-file
|
||||
(insert ";; Automatically generated by unidata-gen.el.\n")
|
||||
(dolist (elt unidata-file-alist)
|
||||
(dolist (proplist (cdr elt))
|
||||
(insert (format "(define-char-code-property '%S %S\n %S)\n"
|
||||
(unidata-prop-prop proplist) (car elt)
|
||||
(unidata-prop-docstring proplist)))))
|
||||
(message "Writing %s..." charprop-file)
|
||||
(insert ";; Local Variables:\n"
|
||||
";; coding: utf-8\n"
|
||||
";; version-control: never\n"
|
||||
";; no-byte-compile: t\n"
|
||||
";; no-update-autoloads: t\n"
|
||||
";; End:\n\n"
|
||||
(format ";; %s ends here\n"
|
||||
(file-name-nondirectory charprop-file)))))
|
||||
|
||||
;; The entry function. It generates files described in the header
|
||||
;; comment of this file.
|
||||
|
||||
|
|
@ -1448,30 +1467,12 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)."
|
|||
(expand-file-name "unidata.txt"))))
|
||||
(let ((coding-system-for-write 'utf-8-unix)
|
||||
(coding-system-for-read 'utf-8)
|
||||
(charprop-file (expand-file-name "charprop.el" dest-dir))
|
||||
(unidata-dir data-dir))
|
||||
(unidata-setup-list unidata-text-file)
|
||||
(with-temp-file charprop-file
|
||||
(insert ";; Automatically generated by unidata-gen.el.\n")
|
||||
(dolist (elt unidata-file-alist)
|
||||
(let* ((file (expand-file-name (car elt) dest-dir))
|
||||
(basename (file-name-nondirectory file)))
|
||||
(unidata-gen-file file data-dir unidata-text-file)
|
||||
;; Filename in this comment line is extracted by sed in Makefile.
|
||||
(insert (format ";; FILE: %s\n" basename))
|
||||
(dolist (proplist (cdr elt))
|
||||
(insert (format "(define-char-code-property '%S %S\n %S)\n"
|
||||
(unidata-prop-prop proplist) basename
|
||||
(unidata-prop-docstring proplist))))))
|
||||
(message "Writing %s..." charprop-file)
|
||||
(insert ";; Local Variables:\n"
|
||||
";; coding: utf-8\n"
|
||||
";; version-control: never\n"
|
||||
";; no-byte-compile: t\n"
|
||||
";; no-update-autoloads: t\n"
|
||||
";; End:\n\n"
|
||||
(format ";; %s ends here\n"
|
||||
(file-name-nondirectory charprop-file))))))
|
||||
(dolist (elt unidata-file-alist)
|
||||
(unidata-gen-file (expand-file-name (car elt) dest-dir)
|
||||
data-dir unidata-text-file))
|
||||
(unidata-gen-charprop (expand-file-name "charprop.el" dest-dir))))
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue