Fixup fromcvs/togit conversion
[pkgsrcv2.git] / devel / cmake-mode / MESSAGE
1 ===========================================================================
2 $NetBSD$
3
4 You will need to add something like the following to your .emacs file to
5 autoload the CMake mode for Emacs.
6
7   (setq auto-mode-alist
8             (append
9              '(("CMakeLists\\.txt\\'" . cmake-mode))
10              '(("\\.cmake\\'" . cmake-mode))
11              auto-mode-alist))
12
13   (autoload 'cmake-mode "${LISPDIR}/cmake-mode.el" t)
14
15 ===========================================================================