Mercurial > emacs
changeset 96175:7f68a049c054
(rst-mode): Put docstring in right place.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Sat, 21 Jun 2008 19:53:46 +0000 |
parents | 58ac3c5e4746 |
children | 9db96e091168 |
files | lisp/textmodes/rst.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/rst.el Sat Jun 21 19:52:27 2008 +0000 +++ b/lisp/textmodes/rst.el Sat Jun 21 19:53:46 2008 +0000 @@ -366,9 +366,6 @@ ;;;###autoload (add-to-list 'auto-mode-alist '("\\.re?st\\'" . rst-mode)) ;;;###autoload (define-derived-mode rst-mode text-mode "ReST" - :abbrev-table rst-mode-abbrev-table - :syntax-table rst-mode-syntax-table - :group 'rst "Major mode for editing reStructuredText documents. There are a number of convenient keybindings provided by @@ -382,6 +379,9 @@ `rst-mode-hook'. This mode also supports font-lock highlighting. You may customize `rst-mode-lazy' to toggle font-locking of blocks." + :abbrev-table rst-mode-abbrev-table + :syntax-table rst-mode-syntax-table + :group 'rst (set (make-local-variable 'paragraph-separate) paragraph-start) (set (make-local-variable 'indent-line-function) 'indent-relative-maybe)