diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-19 12:21:01 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-19 12:21:01 +0200 |
commit | 0a4dc70830f5e8286b47120cabc750cca07a75c1 (patch) | |
tree | ed4911a74033918a5a68fed781ab14771afd8423 /admin/unidata | |
parent | 518312346d9440d18e224231cb645cb3aaf373ba (diff) | |
download | emacs-0a4dc70830f5e8286b47120cabc750cca07a75c1.tar.gz |
; Normalize and add missing first and last lines
Diffstat (limited to 'admin/unidata')
-rw-r--r-- | admin/unidata/unidata-gen.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el index 221c9b104e0..abd41e34a48 100644 --- a/admin/unidata/unidata-gen.el +++ b/admin/unidata/unidata-gen.el @@ -1,4 +1,4 @@ -;; unidata-gen.el -- Create files containing character property data -*- lexical-binding:t -*- +;;; unidata-gen.el --- Create files containing character property data -*- lexical-binding:t -*- ;; Copyright (C) 2008-2021 Free Software Foundation, Inc. @@ -1446,7 +1446,7 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)." ";; no-byte-compile: t\n" ";; no-update-autoloads: t\n" ";; End:\n\n" - (format ";; %s ends here\n" basename))))) + (format ";;; %s ends here\n" basename))))) (or noninteractive (message "Generating %s...done" file))) (defun unidata-gen-charprop (&optional charprop-file) @@ -1470,7 +1470,7 @@ Property value is a symbol `o' (Open), `c' (Close), or `n' (None)." ";; no-byte-compile: t\n" ";; no-update-autoloads: t\n" ";; End:\n\n" - (format ";; %s ends here\n" + (format ";;; %s ends here\n" (file-name-nondirectory charprop-file))))) |