aboutsummaryrefslogtreecommitdiffstats
path: root/admin/admin.el
diff options
context:
space:
mode:
authorGlenn Morris2018-07-07 09:27:44 -0700
committerGlenn Morris2018-07-07 09:27:44 -0700
commitd3e0fdc24f85de3b33de007b8e1ca24560559d9b (patch)
tree751ecc26bd89a0b0d6b9b7a49f299c43fff0a445 /admin/admin.el
parent77166e0da2d58f2f6436989b7059d913be5b3439 (diff)
parenta427de9c86ed31b1fd7599664b3fea0733e633ee (diff)
downloademacs-d3e0fdc24f85de3b33de007b8e1ca24560559d9b.tar.gz
emacs-d3e0fdc24f85de3b33de007b8e1ca24560559d9b.zip
Merge from origin/emacs-26
a427de9 (origin/emacs-26) Fix bug #11732 3a04e15 Improve documentation of 'emacs-lock-mode' 9d6ca5a * lisp/imenu.el (imenu-generic-expression): Doc fix. (Bug#32... fdd7e7d Improve indexing of 'eval-defun' in ELisp manual 10af989 Fix (length CIRCULAR) documentation 271d1f7 Tramp editorials 4abf94f Clarify and improve doc strings of 'eval-last-sexp' and friends 6cfc7a7 Automate upload of Emacs manuals to gnu.org b73cde5 Fix MH-E mail composition with GNU Mailutils (SF#485) 0dce5e5 Speed up 'replace-buffer-contents' some more 00fdce0 * doc/emacs/docstyle.texi: Avoid messing up the html output. Conflicts: admin/make-tarball.txt
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