summaryrefslogtreecommitdiff
path: root/textproc/xslide.el/pkg-message
blob: 51146b672d8f7bb268d5cbe3c9ce5bc21cac7ee1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[
{ type: install
  message: <<EOM
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)
EOM
}
]