Re: Version
Brought to you by:
ovidiu
From: Ovidiu P. <ov...@xe...> - 2002-02-25 19:24:10
|
On Mon, 25 Feb 2002 08:53:01 -0800, aq...@da... wrote: > Hi Ovidiu, > Thanks for your reply. I installed XSLT Process 2.1 and added > following to my init.el. > Now I get the XSLT Menu on the top. But I lost the font-lock for .el > files. Hm, this should not have happened. Are you sure you didn't do anything else that might have caused this? > Also it does not syntax highlight any of the xslt buffers. Do I > have to do anything special to get syntax highlight for XSL files? Have you tried to fontify the buffer after it's been created? Try running M-x font-lock-mode on the XSLT buffer. If this works, you may want to add something like: (add-hook 'xml-mode-hook (lambda () (font-lock-mode 1))) I assume you're using the PSGML mode to display the XSLT file. If you're using xslide, you may need to add the lambda function to hook for xslide (sorry, but I don't know what that is). > Is there no way of finding out the version of individual package in > XEmacs? Usually packages have a variable <mode-name>-version. This is only a convention, so you may find packages that don't respect it. The safest bet is to look in the source code of the package directly, and try to identify the version from there. Regards, Ovidiu |