changeset 102125:057f38650810

(rst-mode-abbrev-table): Mark entries as `system'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 19 Feb 2009 22:14:12 +0000
parents 75c910c62eaa
children 69c0814ddb4e
files lisp/ChangeLog lisp/textmodes/rst.el
diffstat 2 files changed, 12 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Feb 19 17:31:51 2009 +0000
+++ b/lisp/ChangeLog	Thu Feb 19 22:14:12 2009 +0000
@@ -1,3 +1,7 @@
+2009-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* textmodes/rst.el (rst-mode-abbrev-table): Mark entries as `system'.
+
 2009-02-19  Andreas Schwab  <schwab@suse.de>
 
 	* term.el: Remap self-insert-command to term-send-raw in
--- a/lisp/textmodes/rst.el	Thu Feb 19 17:31:51 2009 +0000
+++ b/lisp/textmodes/rst.el	Thu Feb 19 22:14:12 2009 +0000
@@ -310,14 +310,14 @@
 (defvar rst-mode-abbrev-table nil
   "Abbrev table used while in Rst mode.")
 (define-abbrev-table 'rst-mode-abbrev-table
-  '(
-    ("contents" ".. contents::\n..\n   " nil 0)
-    ("con" ".. contents::\n..\n   " nil 0)
-    ("cont" "[...]" nil 0)
-    ("skip" "\n\n[...]\n\n  " nil 0)
-    ("seq" "\n\n[...]\n\n  " nil 0)
-    ;; FIXME: Add footnotes, links, and more.
-    ))
+  (mapcar (lambda (x) (append x '(nil 0 system)))
+          '(("contents" ".. contents::\n..\n   ")
+            ("con" ".. contents::\n..\n   ")
+            ("cont" "[...]")
+            ("skip" "\n\n[...]\n\n  ")
+            ("seq" "\n\n[...]\n\n  ")
+            ;; FIXME: Add footnotes, links, and more.
+            )))
 
 
 ;; Syntax table.