i dont see a .emacs file. which file do i modify to change the backgorund color etc? how does it load the custom.el and init.el libs?


sathish

From: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: emacs for editing xml files
Date: Fri, 5 Oct 2001 13:13:43 -0400

Download and install the psgml mode support. Then modify your setup files
like I did.

I have this in my custom.el file:

 '(sgml-namecase-general nil t)

and I have this in my init.el file:

(autoload 'sgml-mode "psgml" "Major mode to edit SGML files." t)
(autoload 'xml-mode "psgml" "Major mode to edit XML files." t)

;; activating xml-mode for various xml file types
(setq auto-mode-alist
          (append '(
                                ("\\.xsd$" . xml-mode)
                                ("\\.xsl$" . xml-mode)
                                )
                          auto-mode-alist))


John

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to