diff options
author | Glenn Morris <rgm@gnu.org> | 2013-11-20 19:21:50 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-11-20 19:21:50 -0500 |
commit | 2df102287e7cf5fe20b38961413a468d94d99824 (patch) | |
tree | 225debeb3842c2567196daa5c6bb1784166f9961 /doc/emacs/cmdargs.texi | |
parent | 86fd16b6b489168de4ee9924c9889ef310ec95f2 (diff) | |
download | emacs-2df102287e7cf5fe20b38961413a468d94d99824.tar.gz |
Use path-separator with -L, rather than just :
* lisp/startup.el (command-line-1): Use path-separator with -L.
* test/automated/Makefile.in (PATH_SEPARATOR): New, set by configure.
(EMACSOPT): Use PATH_SEPARATOR.
* doc/emacs/cmdargs.texi (Action Arguments): Use path-separator with -L.
* etc/NEWS: Related edit.
Diffstat (limited to 'doc/emacs/cmdargs.texi')
-rw-r--r-- | doc/emacs/cmdargs.texi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/emacs/cmdargs.texi b/doc/emacs/cmdargs.texi index 143e03cde63..92861c443f1 100644 --- a/doc/emacs/cmdargs.texi +++ b/doc/emacs/cmdargs.texi @@ -142,6 +142,8 @@ relative order; i.e., using @samp{-L /foo -L /bar} results in a @code{load-path} of the form @code{("/foo" "/bar" @dots{})}. If @var{dir} begins with @samp{:}, Emacs removes the @samp{:} and appends (rather than prepends) the remainder to @code{load-path}. +(On MS Windows, use @samp{;} instead of @samp{:}; i.e., use +the value of @code{path-separator}.) @item -f @var{function} @opindex -f |