1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

Merge from origin/emacs-30

f8a206937c executable-interpret: Handle remote file names
c17168ebed ; * admin/make-tarball.txt: Fix typo and add details.
This commit is contained in:
Michael Albinus 2025-08-16 13:35:50 +02:00
commit 4cb84d3a78
2 changed files with 14 additions and 4 deletions

View file

@ -388,9 +388,9 @@ add the new NEWS file as news/NEWS.xx.y
Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE
For every new release, a banner is displayed on top of the emacs.html
page. Uncomment and the release banner in emacs.html. Keep it on the
page for about a month, then comment it again. The new release banner
looks like this:
page. Uncomment the release banner in emacs.html. Keep it on the page
for about a month, then comment it again. The new release banner looks
like this:
<div class="release-banner">
<div class="container">
@ -398,6 +398,16 @@ looks like this:
</div>
</div>
Add the information about the new release in the "Releases" section of
emacs.html, which begins like this:
<div class="releases">
<div class="container">
<!-- NOTE: There is no need to keep more than the two most recent -->
<!-- major versions here. -->
<h2 id="Releases">
Also, make sure the copyright years at the bottom of emacs.html are
up-to-date.

View file

@ -180,7 +180,7 @@ command to find the next error. The buffer is also in `comint-mode' and
`compilation-shell-minor-mode', so that you can answer any prompts."
(interactive (list (read-string "Run script: "
(or executable-command
buffer-file-name))))
(file-local-name buffer-file-name)))))
(require 'compile)
(save-some-buffers (not compilation-ask-about-save))
(setq-local executable-command command)