diff options
| author | Glenn Morris | 2017-04-27 22:03:56 -0700 |
|---|---|---|
| committer | Glenn Morris | 2017-04-27 22:03:56 -0700 |
| commit | cee4128135d0d9fd6032a0134b649d5fc81370c0 (patch) | |
| tree | e62e97cbe32f4ca4f9540fe528dac0394702efdf /admin | |
| parent | f0daad9adc5b8fd19f60f89e96b286a78f7162b3 (diff) | |
| parent | 784602b10506c50075aa9463891a47380ebea55f (diff) | |
| download | emacs-cee4128135d0d9fd6032a0134b649d5fc81370c0.tar.gz emacs-cee4128135d0d9fd6032a0134b649d5fc81370c0.zip | |
Merge from origin/emacs-25
784602b1050 (origin/emacs-25) ; Add release notice
3a34412caae (tag: emacs-25.2) Set Emacs version to 25.2 and update AU...
56a4461a48d ; Move stray item from admin/notes/repo to CONTRIBUTE
2b0d1118199 ; CONTRIBUTE: Remove stray header.
f2ab09ec60d Fix a typo in indexing the user manual
bc55a574235 * lisp/menu-bar.el (kill-this-buffer): Doc fix. (Bug#26466)
a6d50401b4b Document 'line-pixel-height'
0c55cf43e61 * search.c (Fre_search_forward, Fre_search_backward): Imp...
c7ed57eaef4 Mention that processes start in default-directory (Bug#18...
856ec9ffa1f * src/xdisp.c (vmessage, message): Clarify commentary.
849a0aaa1c9 Belated fixes for admin.el's M-x make-manuals-dist
84938d79698 default-directory: Remark that it must be a directory name
3f0d047d2eb Delete confuse statement in manual
ee1bd94dd0c Improve packaging documentation
fb18bff91f0 Expand manual section on quitting windows
9a737079645 Fix docstring of dabbrev-abbrev-char-regexp
afe8849bac1 * doc/misc/cl.texi (Iteration Clauses): Clarify example (...
ada79442c07 ;* doc/misc/info.texi (Choose menu subtopic): Improve ind...
d38fd9229c0 Narrow scope of modification hook renabling in org-src fo...
e0e9db4c84a ; Spelling fix
# Conflicts:
# README
# etc/AUTHORS
# etc/HISTORY
# lisp/ldefs-boot.el
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin.el | 9 | ||||
| -rw-r--r-- | admin/notes/repo | 7 |
2 files changed, 7 insertions, 9 deletions
diff --git a/admin/admin.el b/admin/admin.el index 5428e3a10bc..e81e7f1e7e1 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -655,7 +655,10 @@ style=\"text-align:left\">") | |||
| 655 | ("@GZIP_PROG@" . "gzip") | 655 | ("@GZIP_PROG@" . "gzip") |
| 656 | ("@INSTALL@" . "install -c") | 656 | ("@INSTALL@" . "install -c") |
| 657 | ("@INSTALL_DATA@" . "${INSTALL} -m 644") | 657 | ("@INSTALL_DATA@" . "${INSTALL} -m 644") |
| 658 | ("@configure_input@" . "")) | 658 | ("@configure_input@" . "") |
| 659 | ("@AM_DEFAULT_VERBOSITY@" . "0") | ||
| 660 | ("@AM_V@" . "${V}") | ||
| 661 | ("@AM_DEFAULT_V@" . "${AM_DEFAULT_VERBOSITY}")) | ||
| 659 | "Alist of (REGEXP . REPLACEMENT) pairs for `make-manuals-dist'.") | 662 | "Alist of (REGEXP . REPLACEMENT) pairs for `make-manuals-dist'.") |
| 660 | 663 | ||
| 661 | (defun make-manuals-dist--1 (root type) | 664 | (defun make-manuals-dist--1 (root type) |
| @@ -675,7 +678,9 @@ style=\"text-align:left\">") | |||
| 675 | (delete-directory stem t)) | 678 | (delete-directory stem t)) |
| 676 | (make-directory stem) | 679 | (make-directory stem) |
| 677 | (copy-file "../doc/misc/texinfo.tex" stem) | 680 | (copy-file "../doc/misc/texinfo.tex" stem) |
| 678 | (or (equal type "emacs") (copy-file "../doc/emacs/emacsver.texi" stem)) | 681 | (unless (equal type "emacs") |
| 682 | (copy-file "../doc/emacs/emacsver.texi" stem) | ||
| 683 | (copy-file "../doc/emacs/docstyle.texi" stem)) | ||
| 679 | (dolist (file (directory-files (format "../doc/%s" type) t)) | 684 | (dolist (file (directory-files (format "../doc/%s" type) t)) |
| 680 | (if (or (string-match-p "\\(\\.texi\\'\\|/README\\'\\)" file) | 685 | (if (or (string-match-p "\\(\\.texi\\'\\|/README\\'\\)" file) |
| 681 | (and (equal type "lispintro") | 686 | (and (equal type "lispintro") |
diff --git a/admin/notes/repo b/admin/notes/repo index 3ab3da78071..0da1e1e227a 100644 --- a/admin/notes/repo +++ b/admin/notes/repo | |||
| @@ -1,12 +1,5 @@ | |||
| 1 | NOTES ON COMMITTING TO EMACS'S REPOSITORY -*- outline -*- | 1 | NOTES ON COMMITTING TO EMACS'S REPOSITORY -*- outline -*- |
| 2 | 2 | ||
| 3 | ** elpa | ||
| 4 | |||
| 5 | This branch does not contain a copy of Emacs, but of the Emacs Lisp | ||
| 6 | package archive (elpa.gnu.org). See admin/notes/elpa for further | ||
| 7 | explanation, and the README file in the branch for usage | ||
| 8 | instructions. | ||
| 9 | |||
| 10 | * Install changes only on one branch, let them get merged elsewhere if needed. | 3 | * Install changes only on one branch, let them get merged elsewhere if needed. |
| 11 | 4 | ||
| 12 | In particular, install bug-fixes only on the release branch (if there | 5 | In particular, install bug-fixes only on the release branch (if there |