Ar an t-aonú lá déag de mí Lúnasa, scríobh Stephen J. Turnbull:
> When I try to run the M-x edt-emulation-on command it says
"Cannot
> open load file: edt-mapper.el", yet it finds the file in this
> directory:
>
> c:\Program Files\XEmacs\xemacs-packages\lisp\edt\/edt-mapper.el
>
> It looks like something is weird with the path, especially the opposing
> slashes.
Check what the value of `directory-sep-char' is using M-:
directory-sep-char RET. It should be ?\.
It’s a bug in edt-load-keys. This patch should resolve it for Timothy:
--- edt.el 2003-03-22 09:12:55.000000000 +0100
+++ edt-modified.el 2007-08-13 17:46:39.453125000 +0200
@@ -2073,7 +2073,10 @@
(search-list (append (list (expand-file-name ".")) load-path)))
(while (and (not found) search-list)
(setq path (concat (car search-list)
- (if (string-match "/$" (car search-list)) "" "/")
+ (if (string-match
+ (string directory-sep-char ?$)
+ (car search-list)) ""
+ (string directory-sep-char))
file))
(if (and (file-exists-p path) (not (file-directory-p path)))
(setq found t))
--
On the quay of the little Black Sea port, where the rescued pair came once
more into contact with civilization, Dobrinton was bitten by a dog which was
assumed to be mad, though it may only have been indiscriminating. (Saki)
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta