I'm trying to set up Muse so that my projects (and ultimately my emacs setup files) live in a Dropbox folder. I've set an environment variable, DROPBOX, to where the folder is mounted on my Win7 system. However, I can't publish my projects. My emacs init.el contains:

(setq drop-box (getenv "DROPBOX"))
(setq muse-path (concat drop-box "\\Muse"))
(setq load-path (add-to-list 'load-path "~/emacsdir/muse/lisp"))
(require 'muse-mode)
(require 'muse-html)
(require 'muse-latex)
(require 'muse-project)
(setq muse-project-alist
           '(("website"            ; my various writings
              ("~/Pages" :default "index")
              (:base "html" :path "~/public_html")
              (:base "pdf" :path "~/public_html/pdf"))
             ("Info"
              (muse-path :default "index")
              (:base "html" :path (concat muse-path "\\HTML"))
              )))

But when I try to C-c C-p, I get:

    Assertion failed: (file-name-directory path)


Any clues about what I'm doing wrong, or how to fix it?

Thank you!

-pd


--
--------
Peter Davis
 The Tech Curmudgeon - http://www.techcurmudgeon.com
Ideas Great and Dumb - http://www.ideasgreatanddumb.com


_______________________________________________
Muse-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/muse-el-discuss

Reply via email to