mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(basic-save-buffer-2): Use a template with `$'
instead of `#' for VMS.
This commit is contained in:
parent
af9eaa5eb3
commit
e1603a09df
1 changed files with 3 additions and 1 deletions
|
|
@ -2588,7 +2588,9 @@ After saving the buffer, this function runs `after-save-hook'."
|
|||
(if (and (eq system-type 'ms-dos)
|
||||
(not (msdos-long-file-names)))
|
||||
"%s#%d.tm#" ; MSDOS limits files to 8+3
|
||||
"%s#tmp#%d")
|
||||
(if (memq system-type '(vax-vms axp-vms))
|
||||
"%s$tmp$%d"
|
||||
"%s#tmp#%d"))
|
||||
dir i))
|
||||
(setq nogood (file-exists-p tempname))
|
||||
(setq i (1+ i)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue