1
Fork 0
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:
Gerd Moellmann 2000-04-17 15:24:06 +00:00
parent af9eaa5eb3
commit e1603a09df

View file

@ -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)))