Add MESSAGE to instruct how to use rd-mode in Emacs/XEmacs.

This commit is contained in:
Akinori MUSHA 2000-08-15 03:02:19 +00:00
parent 597e8a3a90
commit c672907a53
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31646
2 changed files with 9 additions and 0 deletions

View file

@ -79,5 +79,6 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/rd/ja/
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View file

@ -0,0 +1,8 @@
************************************************************
To use rd-mode in Emacs/XEmacs, add the following lines to
your ~/.emacs:
(autoload 'rd-mode "rd-mode"
"major mode for ruby document formatter RD" t)
(add-to-list 'auto-mode-alist '("\\.rd$" . rd-mode))
************************************************************