diff options
| author | Glenn Morris | 2021-03-29 08:26:25 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-03-29 08:26:25 -0700 |
| commit | 7ebd79f3c618773852ed09f4c121dd717368c23a (patch) | |
| tree | 173b468fc5b41f11d8e508cd3b999dbedf7d32ad /admin | |
| parent | 31153cb50938fb15030efd6af5b3a888f317224e (diff) | |
| parent | bcc4cc3362fdb0f2b299087af5e7b31b92862fbb (diff) | |
| download | emacs-7ebd79f3c618773852ed09f4c121dd717368c23a.tar.gz emacs-7ebd79f3c618773852ed09f4c121dd717368c23a.zip | |
Merge from origin/emacs-27
bcc4cc3362 Doc fixes for 'face-foreground' and 'face-background'.
bf6442fafd ; * admin/make-tarball.txt: Minor addition to the Web page...
38b127d32e * admin/admin.el (set-version): Handle malformed NEWS markup.
0d7e2a993e admin.el fix for bug#47394
fdec444758 ; * etc/NEWS: Fix typo.
1e6ca2765f ; * admin/make-tarball.txt: Another minor addition.
# Conflicts:
# etc/NEWS
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin.el | 4 | ||||
| -rw-r--r-- | admin/make-tarball.txt | 15 |
2 files changed, 16 insertions, 3 deletions
diff --git a/admin/admin.el b/admin/admin.el index e3701070d03..ad4208beef0 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -151,7 +151,7 @@ Root must be the root of an Emacs source tree." | |||
| 151 | (display-warning 'admin | 151 | (display-warning 'admin |
| 152 | "NEWS file contains empty sections - remove them?")) | 152 | "NEWS file contains empty sections - remove them?")) |
| 153 | (goto-char (point-min)) | 153 | (goto-char (point-min)) |
| 154 | (if (re-search-forward "^\\(\\+\\+\\+ *$\\|--- *$\\|Temporary note:\\)" nil t) | 154 | (if (re-search-forward "^\\(\\+\\+\\+? *$\\|---? *$\\|Temporary note:\\)" nil t) |
| 155 | (display-warning 'admin | 155 | (display-warning 'admin |
| 156 | "NEWS file still contains temporary markup. | 156 | "NEWS file still contains temporary markup. |
| 157 | Documentation changes might not have been completed!")))) | 157 | Documentation changes might not have been completed!")))) |
| @@ -545,7 +545,7 @@ Leave point after the table." | |||
| 545 | (forward-line 1) | 545 | (forward-line 1) |
| 546 | (while (not done) | 546 | (while (not done) |
| 547 | (cond ((re-search-forward "<tr><td.*• \\(<a.*</a>\\)\ | 547 | (cond ((re-search-forward "<tr><td.*• \\(<a.*</a>\\)\ |
| 548 | :</td><td> </td><td[^>]*>\\(.*\\)" (line-end-position) t) | 548 | :?</td><td> </td><td[^>]*>\\(.*\\)" (line-end-position) t) |
| 549 | (replace-match (format "<tr><td%s>\\1</td>\n<td>\\2" | 549 | (replace-match (format "<tr><td%s>\\1</td>\n<td>\\2" |
| 550 | (if table-workaround | 550 | (if table-workaround |
| 551 | " bgcolor=\"white\"" ""))) | 551 | " bgcolor=\"white\"" ""))) |
diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 418cf91ae29..c2078955336 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt | |||
| @@ -250,8 +250,12 @@ General steps (for each step, check for possible errors): | |||
| 250 | because replies that invariably are not announcements also get | 250 | because replies that invariably are not announcements also get |
| 251 | sent out as if they were.) | 251 | sent out as if they were.) |
| 252 | 252 | ||
| 253 | 12. After a release, update the Emacs pages as below. | 253 | 12. After a release, update the Emacs pages as described below. |
| 254 | 254 | ||
| 255 | 13. Bump the Emacs version on the release branch. | ||
| 256 | If the released version was XX.Y, use 'set-version' from | ||
| 257 | admin/admin.el to bump the version on the release branch to | ||
| 258 | XX.Y.50. Commit the changes. | ||
| 255 | 259 | ||
| 256 | UPDATING THE EMACS WEB PAGES AFTER A RELEASE | 260 | UPDATING THE EMACS WEB PAGES AFTER A RELEASE |
| 257 | 261 | ||
| @@ -271,5 +275,14 @@ page for about a month, then comment it again. | |||
| 271 | Regenerate the various manuals in manual/. | 275 | Regenerate the various manuals in manual/. |
| 272 | The scripts admin/make-manuals and admin/upload-manuals summarize the process. | 276 | The scripts admin/make-manuals and admin/upload-manuals summarize the process. |
| 273 | 277 | ||
| 278 | If you have Texinfo installed locally, make-manuals might fail if it | ||
| 279 | cannot find epsf.tex. In that case define in the environment | ||
| 280 | |||
| 281 | TEXINPUTS=:/path/to/texinfo-tree/doc | ||
| 282 | |||
| 283 | where /path/to/texinfo-tree is the absolute file name of the top-level | ||
| 284 | directory where you have the Texinfo source tree. Then re-run | ||
| 285 | make-manuals. | ||
| 286 | |||
| 274 | Browsing <https://web.cvs.savannah.gnu.org/viewvc/?root=emacs> is one | 287 | Browsing <https://web.cvs.savannah.gnu.org/viewvc/?root=emacs> is one |
| 275 | way to check for any files that still need updating. | 288 | way to check for any files that still need updating. |