diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-06-03 17:44:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-06-03 17:44:23 +0000 |
commit | c7ace6208283684f53854075f75fc045177c67b4 (patch) | |
tree | 9a842876c82b6d98b5ccc8aa64da95be3dd362c5 /nt/addpm.c | |
parent | 67633d4bafbd376fcffccea56f31ea0b9402aad2 (diff) | |
download | emacs-c7ace6208283684f53854075f75fc045177c67b4.tar.gz |
(env_vars): Use slashes, not backslashes.
Diffstat (limited to 'nt/addpm.c')
-rw-r--r-- | nt/addpm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nt/addpm.c b/nt/addpm.c index 25c75c2ab03..8069652f7fb 100644 --- a/nt/addpm.c +++ b/nt/addpm.c @@ -54,13 +54,13 @@ static struct entry env_vars[] = { {"emacs_dir", NULL}, - {"EMACSLOADPATH", "%emacs_dir%\\lisp"}, + {"EMACSLOADPATH", "%emacs_dir%/lisp"}, {"SHELL", "%COMSPEC%"}, - {"EMACSDATA", "%emacs_dir%\\etc"}, - {"EMACSPATH", "%emacs_dir%\\bin"}, - {"EMACSLOCKDIR", "%emacs_dir%\\lock"}, - {"INFOPATH", "%emacs_dir%\\info"}, - {"EMACSDOC", "%emacs_dir%\\etc"}, + {"EMACSDATA", "%emacs_dir%/etc"}, + {"EMACSPATH", "%emacs_dir%/bin"}, + {"EMACSLOCKDIR", "%emacs_dir%/lock"}, + {"INFOPATH", "%emacs_dir%/info"}, + {"EMACSDOC", "%emacs_dir%/etc"}, {"TERM", "cmd"} }; |