Roger Wimmer <wimmer(a)imrt.mavt.ethz.ch> writes:
The value of TeX-lisp directory is:
"e:\\...\\auctex\\/"
I think the problem is caused by "\\/". When I replaced all
"\\" and
"\\/" with "/", everything worked fine.
In fact in this particular case I think is it is caused by
;;; Style Paths
(or (string-match "/\\'" TeX-lisp-directory)
(setq TeX-lisp-directory (concat TeX-lisp-directory "/")))
Which on a modern Emacs should be replaced by
(setq TeX-lisp-directory (file-name-as-directory TeX-lisp-directory))
in fact I think this would even be unnecessary if AucTeX were
converted to use a two argument call to expand-file-name where it is
using concat now.
Jan