From b6489a43116932a279479feab1e424f72529cb34 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 19 Oct 2008 10:13:17 +0000 Subject: [PATCH] (shadow-initialize) : Run file names that begin with a period thru `convert-standard-filename'. --- lisp/shadowfile.el | 5 +++-- 1 file 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") -- 2.39.5