diff options
| author | Andrea Corallo | 2021-01-30 14:09:37 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2021-01-30 14:09:37 +0100 |
| commit | a8b8d220b4fccaa812e85f9b2b3715593dc285ac (patch) | |
| tree | 07051469f09277b1993eee37870059e3d0abf71e /admin | |
| parent | b8d3ae78c54db7c7bb65d367a80f9be3d8744c48 (diff) | |
| parent | ed2f2cc5577d5d9b61db7a5b61e93e79d678be41 (diff) | |
| download | emacs-a8b8d220b4fccaa812e85f9b2b3715593dc285ac.tar.gz emacs-a8b8d220b4fccaa812e85f9b2b3715593dc285ac.zip | |
Merge remote-tracking branch 'savannah/master' into native-comp
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/notes/unicode | 10 | ||||
| -rw-r--r-- | admin/unidata/unidata-gen.el | 6 |
2 files changed, 5 insertions, 11 deletions
diff --git a/admin/notes/unicode b/admin/notes/unicode index 45455d897f3..bcede9c6ed1 100644 --- a/admin/notes/unicode +++ b/admin/notes/unicode | |||
| @@ -256,15 +256,6 @@ nontrivial changes to the build process. | |||
| 256 | 256 | ||
| 257 | etc/tutorials/TUTORIAL.ja | 257 | etc/tutorials/TUTORIAL.ja |
| 258 | 258 | ||
| 259 | * iso-2022-7bit | ||
| 260 | |||
| 261 | This file contains multiple Chinese charsets, and converting it | ||
| 262 | to UTF-8 would lose the charset property and would change the | ||
| 263 | code's behavior. Although this could be worked around by | ||
| 264 | propertizing the strings, that hasn't been done. | ||
| 265 | |||
| 266 | lisp/international/titdic-cnv.el | ||
| 267 | |||
| 268 | * utf-8-emacs | 259 | * utf-8-emacs |
| 269 | 260 | ||
| 270 | These files contain characters that cannot be encoded in UTF-8. | 261 | These files contain characters that cannot be encoded in UTF-8. |
| @@ -276,6 +267,7 @@ nontrivial changes to the build process. | |||
| 276 | lisp/language/tibetan.el | 267 | lisp/language/tibetan.el |
| 277 | lisp/leim/quail/ethiopic.el | 268 | lisp/leim/quail/ethiopic.el |
| 278 | lisp/leim/quail/tibetan.el | 269 | lisp/leim/quail/tibetan.el |
| 270 | lisp/international/titdic-cnv.el | ||
| 279 | 271 | ||
| 280 | * binary files | 272 | * binary files |
| 281 | 273 | ||
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el index 3918853088f..221c9b104e0 100644 --- a/admin/unidata/unidata-gen.el +++ b/admin/unidata/unidata-gen.el | |||
| @@ -1416,7 +1416,8 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)." | |||
| 1416 | (or elt (user-error "Unknown output file: %s" basename)) | 1416 | (or elt (user-error "Unknown output file: %s" basename)) |
| 1417 | (or noninteractive (message "Generating %s..." file)) | 1417 | (or noninteractive (message "Generating %s..." file)) |
| 1418 | (with-temp-file file | 1418 | (with-temp-file file |
| 1419 | (insert ";; " copyright " | 1419 | (insert ";;; " basename " -*- lexical-binding:t -*- |
| 1420 | ;; " copyright " | ||
| 1420 | ;; Generated from Unicode data files by unidata-gen.el. | 1421 | ;; Generated from Unicode data files by unidata-gen.el. |
| 1421 | ;; The sources for this file are found in the admin/unidata/ directory in | 1422 | ;; The sources for this file are found in the admin/unidata/ directory in |
| 1422 | ;; the Emacs sources. The Unicode data files are used under the | 1423 | ;; the Emacs sources. The Unicode data files are used under the |
| @@ -1451,7 +1452,8 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)." | |||
| 1451 | (defun unidata-gen-charprop (&optional charprop-file) | 1452 | (defun unidata-gen-charprop (&optional charprop-file) |
| 1452 | (or charprop-file (setq charprop-file (pop command-line-args-left))) | 1453 | (or charprop-file (setq charprop-file (pop command-line-args-left))) |
| 1453 | (with-temp-file charprop-file | 1454 | (with-temp-file charprop-file |
| 1454 | (insert ";; Automatically generated by unidata-gen.el.\n" | 1455 | (insert ";; Automatically generated by unidata-gen.el." |
| 1456 | " -*- lexical-binding: t -*-\n" | ||
| 1455 | ";; See the admin/unidata/ directory in the Emacs sources.\n") | 1457 | ";; See the admin/unidata/ directory in the Emacs sources.\n") |
| 1456 | (dolist (elt unidata-file-alist) | 1458 | (dolist (elt unidata-file-alist) |
| 1457 | (dolist (proplist (cdr elt)) | 1459 | (dolist (proplist (cdr elt)) |