emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/rst.el,v


From: John Paul Wallington
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/rst.el,v
Date: Sat, 21 Jun 2008 19:53:46 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     John Paul Wallington <jpw>      08/06/21 19:53:46

Index: rst.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/textmodes/rst.el,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- rst.el      21 Jun 2008 04:10:26 -0000      1.5
+++ rst.el      21 Jun 2008 19:53:46 -0000      1.6
@@ -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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]