a204dd6693
PR: ports/33876 Submitted by: Leo Kim <leo@florida.sarang.net>
21 lines
558 B
Plaintext
21 lines
558 B
Plaintext
****************************************************************************
|
|
To use xsl-mode, add to your ~/.emacs the following lines:
|
|
|
|
;; XSL mode
|
|
(autoload 'xsl-mode "xslide" "Major mode for XSL stylesheets." t)
|
|
|
|
;; Turn on font lock when in XSL mode
|
|
(add-hook 'xsl-mode-hook
|
|
'turn-on-font-lock)
|
|
|
|
(setq auto-mode-alist
|
|
(append
|
|
(list
|
|
'("\\.fo" . xsl-mode)
|
|
'("\\.xsl" . xsl-mode))
|
|
auto-mode-alist))
|
|
|
|
;; Uncomment if using abbreviations
|
|
;; (abbrev-mode t)
|
|
****************************************************************************
|