diff options
| author | Dmitry Gutov | 2022-08-15 02:22:59 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2022-08-15 02:22:59 +0300 |
| commit | ee3a674c7c9e39fe7ff296ce1f9830fc45520de8 (patch) | |
| tree | e8ba1e7be54314f208454e80e3d31044c913f3eb /admin | |
| parent | fe0e53d963899a16e0dd1bbc1ba10a6b59f7989e (diff) | |
| parent | 0a8e88fd83db5398d36064a7f87cff5b57da7284 (diff) | |
| download | emacs-scratch/font_lock_large_files.tar.gz emacs-scratch/font_lock_large_files.zip | |
Merge branch 'master' into scratch/font_lock_large_filesscratch/font_lock_large_files
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/authors.el | 2 | ||||
| -rwxr-xr-x | admin/emake | 2 | ||||
| -rw-r--r-- | admin/unidata/unidata-gen.el | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/admin/authors.el b/admin/authors.el index de43d914544..12fe25fa4e1 100644 --- a/admin/authors.el +++ b/admin/authors.el | |||
| @@ -1883,7 +1883,7 @@ list of their contributions.\n") | |||
| 1883 | (insert "\n ")) | 1883 | (insert "\n ")) |
| 1884 | (insert " " file)) | 1884 | (insert " " file)) |
| 1885 | (insert "\n"))))) | 1885 | (insert "\n"))))) |
| 1886 | (insert "\nLocal" " Variables:\nmode: etc-authors\ncoding: " | 1886 | (insert "\nLocal" " Variables:\nmode: emacs-authors\ncoding: " |
| 1887 | (symbol-name authors-coding-system) "\nEnd:\n") | 1887 | (symbol-name authors-coding-system) "\nEnd:\n") |
| 1888 | (message "Generating buffer %s... done" buffer-name) | 1888 | (message "Generating buffer %s... done" buffer-name) |
| 1889 | (unless noninteractive | 1889 | (unless noninteractive |
diff --git a/admin/emake b/admin/emake index 9bebd340678..548611c6afc 100755 --- a/admin/emake +++ b/admin/emake | |||
| @@ -29,6 +29,7 @@ s#^Running # Running # | |||
| 29 | s#^Configured for # Configured for # | 29 | s#^Configured for # Configured for # |
| 30 | s#^./temacs.*# \\& # | 30 | s#^./temacs.*# \\& # |
| 31 | s#^make.*Error# \\& # | 31 | s#^make.*Error# \\& # |
| 32 | s#^Dumping under the name# \\& # | ||
| 32 | ' | \ | 33 | ' | \ |
| 33 | grep -E --line-buffered -v "^make|\ | 34 | grep -E --line-buffered -v "^make|\ |
| 34 | ^Loading|\ | 35 | ^Loading|\ |
| @@ -43,7 +44,6 @@ GEN.*autoloads|\ | |||
| 43 | ^Adding name|\ | 44 | ^Adding name|\ |
| 44 | ^Dump mode|\ | 45 | ^Dump mode|\ |
| 45 | ^Dumping finger|\ | 46 | ^Dumping finger|\ |
| 46 | ^Dumping under the name|\ | ||
| 47 | ^Byte counts|\ | 47 | ^Byte counts|\ |
| 48 | ^Reloc counts|\ | 48 | ^Reloc counts|\ |
| 49 | ^Pure-hashed|\ | 49 | ^Pure-hashed|\ |
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el index 0a9fd5108ce..78dd1c37288 100644 --- a/admin/unidata/unidata-gen.el +++ b/admin/unidata/unidata-gen.el | |||
| @@ -1083,8 +1083,8 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)." | |||
| 1083 | 1083 | ||
| 1084 | (defun unidata--ensure-compiled (&rest funcs) | 1084 | (defun unidata--ensure-compiled (&rest funcs) |
| 1085 | (dolist (fun funcs) | 1085 | (dolist (fun funcs) |
| 1086 | (or (byte-code-function-p (symbol-function fun)) | 1086 | (unless (compiled-function-p (symbol-function fun)) |
| 1087 | (byte-compile fun)))) | 1087 | (byte-compile fun)))) |
| 1088 | 1088 | ||
| 1089 | (defun unidata-gen-table-name (prop index &rest _ignore) | 1089 | (defun unidata-gen-table-name (prop index &rest _ignore) |
| 1090 | (let* ((table (unidata-gen-table-word-list prop index 'unidata-split-name)) | 1090 | (let* ((table (unidata-gen-table-word-list prop index 'unidata-split-name)) |