diff options
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") (insert "\n ")) (insert " " file)) (insert "\n"))))) - (insert "\nLocal" " Variables:\nmode: etc-authors\ncoding: " + (insert "\nLocal" " Variables:\nmode: emacs-authors\ncoding: " (symbol-name authors-coding-system) "\nEnd:\n") (message "Generating buffer %s... done" buffer-name) (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 # s#^Configured for # Configured for # s#^./temacs.*# \\& # s#^make.*Error# \\& # +s#^Dumping under the name# \\& # ' | \ grep -E --line-buffered -v "^make|\ ^Loading|\ @@ -43,7 +44,6 @@ GEN.*autoloads|\ ^Adding name|\ ^Dump mode|\ ^Dumping finger|\ -^Dumping under the name|\ ^Byte counts|\ ^Reloc counts|\ ^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)." (defun unidata--ensure-compiled (&rest funcs) (dolist (fun funcs) - (or (byte-code-function-p (symbol-function fun)) - (byte-compile fun)))) + (unless (compiled-function-p (symbol-function fun)) + (byte-compile fun)))) (defun unidata-gen-table-name (prop index &rest _ignore) (let* ((table (unidata-gen-table-word-list prop index 'unidata-split-name)) |