aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/admin.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/admin/admin.el b/admin/admin.el
index ca803fa4a99..f1d1b308f88 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -243,7 +243,11 @@ Root must be the root of an Emacs source tree."
243 (set-version-in-file 243 (set-version-in-file
244 root "nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings" 244 root "nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings"
245 copyright (rx (and "NSHumanReadableCopyright" (0+ space) ?\= (0+ space) 245 copyright (rx (and "NSHumanReadableCopyright" (0+ space) ?\= (0+ space)
246 ?\" (submatch (1+ (not (in ?\")))))))) 246 ?\" (submatch (1+ (not (in ?\")))))))
247 (set-version-in-file
248 root "nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist"
249 copyright (rx (and "Copyright" (0+ space) ?\= (0+ space)
250 ?\" (submatch (1+ (not (in ?\"))))))))
247 251
248(provide 'admin) 252(provide 'admin)
249 253