emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/files.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/files.el
Date: Fri, 29 Mar 2002 09:02:54 -0500

Index: emacs/lisp/files.el
diff -c emacs/lisp/files.el:1.556 emacs/lisp/files.el:1.557
*** emacs/lisp/files.el:1.556   Thu Mar 28 13:26:07 2002
--- emacs/lisp/files.el Fri Mar 29 09:02:54 2002
***************
*** 294,300 ****
  
  (defcustom auto-save-file-name-transforms
    `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
!      ,(expand-file-name "\\2" temporary-file-directory)))
    "*Transforms to apply to buffer file name before making auto-save file name.
  Each transform is a list (REGEXP REPLACEMENT):
  REGEXP is a regular expression to match against the file name.
--- 294,302 ----
  
  (defcustom auto-save-file-name-transforms
    `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
!      ;; Don't put "\\2" inside expand-file-name, since it will be
!      ;; transformed to "/2" on DOS/Windows.
!      ,(concat (expand-file-name temporary-file-directory) "\\2")))
    "*Transforms to apply to buffer file name before making auto-save file name.
  Each transform is a list (REGEXP REPLACEMENT):
  REGEXP is a regular expression to match against the file name.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]