diff options
author | yoichi <yoichi@FreeBSD.org> | 2002-02-09 05:08:27 +0800 |
---|---|---|
committer | yoichi <yoichi@FreeBSD.org> | 2002-02-09 05:08:27 +0800 |
commit | 0a70274d2a7d574b6cd598b4d6a23c861be9ed70 (patch) | |
tree | 9ac7b884ebec57c902118b0bc75ddcce1a0e0381 /textproc/xslide.el/pkg-message | |
parent | 16230d1e618e7df59ddbbbf5db471bb37f450e86 (diff) | |
download | freebsd-ports-gnome-0a70274d2a7d574b6cd598b4d6a23c861be9ed70.tar.gz freebsd-ports-gnome-0a70274d2a7d574b6cd598b4d6a23c861be9ed70.tar.zst freebsd-ports-gnome-0a70274d2a7d574b6cd598b4d6a23c861be9ed70.zip |
Add xslide.el, Emacs major mode for editing XSL stylesheets.
PR: ports/33876
Submitted by: Leo Kim <leo@florida.sarang.net>
Diffstat (limited to 'textproc/xslide.el/pkg-message')
-rw-r--r-- | textproc/xslide.el/pkg-message | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/textproc/xslide.el/pkg-message b/textproc/xslide.el/pkg-message new file mode 100644 index 000000000000..eb57f2f00073 --- /dev/null +++ b/textproc/xslide.el/pkg-message @@ -0,0 +1,20 @@ +**************************************************************************** +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) +**************************************************************************** |