monnier pushed a commit to branch master
in repository elpa.
commit efef42c887cc666c14d3a73b2bdab4b408b9408d
Author: Teemu Likonen <[email protected]>
Date: Sun May 17 13:14:24 2009 +0000
Laitetaan oletusasetukset näkymään customizeen
---
wcheck-mode.el | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/wcheck-mode.el b/wcheck-mode.el
index 403d5c3..f62ce25 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -131,7 +131,8 @@ An example contents of the `wcheck-language-data' variable:
(cons :format "%v"
(const :tag "Face: "
:format "%t" face)
- (symbol :format "%v"))
+ (face :format "%v"
+ :value wcheck-default-face))
(cons :format "%v"
(const :tag "Syntax table: "
:format "%t" syntax)
@@ -139,19 +140,23 @@ An example contents of the `wcheck-language-data'
variable:
(cons :format "%v"
(const :tag "Regexp start: "
:format "%t" regexp-start)
- (regexp :format "%v"))
+ (regexp :format "%v"
+ :value "\\<'*"))
(cons :format "%v"
(const :tag "Regexp body: "
:format "%t" regexp-body)
- (regexp :format "%v"))
+ (regexp :format "%v"
+ :value "\\w+?"))
(cons :format "%v"
(const :tag "Regexp end: "
:format "%t" regexp-end)
- (regexp :format "%v"))
+ (regexp :format "%v"
+ :value "'*\\>"))
(cons :format "%v"
(const :tag "Regexp discard: "
:format "%t" regexp-discard)
- (regexp :format "%v"))))))
+ (regexp :format "%v"
+ :value "\\`'+\\'"))))))