diff options
author | Eli Zaretskii <eliz@gnu.org> | 2008-10-19 10:13:17 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2008-10-19 10:13:17 +0000 |
commit | b6489a43116932a279479feab1e424f72529cb34 (patch) | |
tree | 58363228fc9fd352d80b08b4155798ff071b809e /lisp/shadowfile.el | |
parent | 5b9bdd5b852122a890ab56d590be83bc94200184 (diff) | |
download | emacs-b6489a43116932a279479feab1e424f72529cb34.tar.gz |
(shadow-initialize) <shadow-info-file, shadow-todo-file>: Run file names
that begin with a period thru `convert-standard-filename'.
Diffstat (limited to 'lisp/shadowfile.el')
-rw-r--r-- | lisp/shadowfile.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/shadowfile.el b/lisp/shadowfile.el index 8b311d5e9ff..f4f8f856896 100644 --- a/lisp/shadowfile.el +++ b/lisp/shadowfile.el @@ -805,10 +805,11 @@ look for files that have been changed and need to be copied to other systems." (file-name-as-directory (shadow-expand-file-name "~")))) (if (null shadow-info-file) (setq shadow-info-file - (shadow-expand-file-name "~/.shadows"))) + (shadow-expand-file-name (convert-standard-filename "~/.shadows")))) (if (null shadow-todo-file) (setq shadow-todo-file - (shadow-expand-file-name "~/.shadow_todo"))) + (shadow-expand-file-name + (convert-standard-filename "~/.shadow_todo")))) (if (not (shadow-read-files)) (progn (message "Shadowfile information files not found - aborting") |