aboutsummaryrefslogtreecommitdiffstats
path: root/admin/admin.el
diff options
context:
space:
mode:
authorGlenn Morris2018-07-05 21:50:18 -0700
committerGlenn Morris2018-07-05 21:50:18 -0700
commit6cfc7a7b1bc3989e6d2cc271222ff7ce4eb23b5e (patch)
tree2e5620f06b5fbb8fcc289e53f5861b783af1a268 /admin/admin.el
parentb73cde5e2815c531df7f5fd13e214a7d92f78239 (diff)
downloademacs-6cfc7a7b1bc3989e6d2cc271222ff7ce4eb23b5e.tar.gz
emacs-6cfc7a7b1bc3989e6d2cc271222ff7ce4eb23b5e.zip
Automate upload of Emacs manuals to gnu.org
* admin/make-manuals, admin/upload-manuals: New scripts. * admin/admin.el (make-manuals, make-manuals-dist): Handle batch mode. * admin/make-tarball.txt: Update web-page details.
Diffstat (limited to 'admin/admin.el')
-rw-r--r--admin/admin.el16
1 files changed, 12 insertions, 4 deletions
diff --git a/admin/admin.el b/admin/admin.el
index dab61bb9166..3cb5dbc2d92 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -261,8 +261,12 @@ ROOT should be the root of an Emacs source tree."
261ROOT should be the root of an Emacs source tree. 261ROOT should be the root of an Emacs source tree.
262Interactively with a prefix argument, prompt for TYPE. 262Interactively with a prefix argument, prompt for TYPE.
263Optional argument TYPE is type of output (nil means all)." 263Optional argument TYPE is type of output (nil means all)."
264 (interactive (let ((root (read-directory-name "Emacs root directory: " 264 (interactive (let ((root
265 source-directory nil t))) 265 (if noninteractive
266 (or (pop command-line-args-left)
267 default-directory)
268 (read-directory-name "Emacs root directory: "
269 source-directory nil t))))
266 (list root 270 (list root
267 (if current-prefix-arg 271 (if current-prefix-arg
268 (completing-read 272 (completing-read
@@ -717,8 +721,12 @@ style=\"text-align:left\">")
717ROOT should be the root of an Emacs source tree. 721ROOT should be the root of an Emacs source tree.
718Interactively with a prefix argument, prompt for TYPE. 722Interactively with a prefix argument, prompt for TYPE.
719Optional argument TYPE is type of output (nil means all)." 723Optional argument TYPE is type of output (nil means all)."
720 (interactive (let ((root (read-directory-name "Emacs root directory: " 724 (interactive (let ((root
721 source-directory nil t))) 725 (if noninteractive
726 (or (pop command-line-args-left)
727 default-directory)
728 (read-directory-name "Emacs root directory: "
729 source-directory nil t))))
722 (list root 730 (list root
723 (if current-prefix-arg 731 (if current-prefix-arg
724 (completing-read 732 (completing-read