aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/tdtd.el/pkg-message
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/tdtd.el/pkg-message')
-rw-r--r--textproc/tdtd.el/pkg-message28
1 files changed, 28 insertions, 0 deletions
diff --git a/textproc/tdtd.el/pkg-message b/textproc/tdtd.el/pkg-message
new file mode 100644
index 000000000000..49227f495931
--- /dev/null
+++ b/textproc/tdtd.el/pkg-message
@@ -0,0 +1,28 @@
+****************************************************************************
+To use dtd-mode, add to your ~/.emacs the following lines:
+
+;; DTD mode
+(autoload 'dtd-mode "tdtd" "Major mode for SGML and XML DTDs." t)
+(autoload 'dtd-etags "tdtd"
+ "Execute etags on FILESPEC and match on DTD-specific regular expressions."
+ t)
+(autoload 'dtd-grep "tdtd" "Grep for PATTERN in files matching FILESPEC." t)
+
+;; Turn on font lock when in DTD mode
+(add-hook 'dtd-mode-hooks
+ 'turn-on-font-lock)
+
+(setq auto-mode-alist
+ (append
+ (list
+ '("\\.dcl$" . dtd-mode)
+ '("\\.dec$" . dtd-mode)
+ '("\\.dtd$" . dtd-mode)
+ '("\\.ele$" . dtd-mode)
+ '("\\.ent$" . dtd-mode)
+ '("\\.mod$" . dtd-mode))
+ auto-mode-alist))
+
+;; To use resize-minibuffer-mode, uncomment this and include in your .emacs:
+;;(resize-minibuffer-mode)
+****************************************************************************