# HG changeset patch # User Eli Zaretskii # Date 1224411197 0 # Node ID 6e47884b9b269f03e2e40e37e8aa114fe6c875c2 # Parent a2b77994ca7e2fba235325d2d4088363404d3e4b (shadow-initialize) : Run file names that begin with a period thru `convert-standard-filename'. diff -r a2b77994ca7e -r 6e47884b9b26 lisp/shadowfile.el --- a/lisp/shadowfile.el Sun Oct 19 10:12:01 2008 +0000 +++ b/lisp/shadowfile.el Sun Oct 19 10:13:17 2008 +0000 @@ -805,10 +805,11 @@ (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")