aboutsummaryrefslogtreecommitdiff
path: root/sx-question-mode.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2014-11-17 22:33:07 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2014-11-17 22:33:07 +0000
commit3e17a40c0701dcd3cfa03141b2669abeb55e160a (patch)
tree2d2003fa91889bb54f0beeb4dac5232b99cb788b /sx-question-mode.el
parent34d28e79f4a6049dc4ceb44397a2ca0725cecd5f (diff)
parent278fa010e6a63474fce6bf46aaf3327b0d9cf7f7 (diff)
Merge branch 'master' into question-mode-keybindings++
Diffstat (limited to 'sx-question-mode.el')
-rw-r--r--sx-question-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-question-mode.el b/sx-question-mode.el
index 20d93c4..fa58512 100644
--- a/sx-question-mode.el
+++ b/sx-question-mode.el
@@ -360,11 +360,11 @@ HEADER is given `sx-question-mode-header' face, and value is given FACE.
(when sx-question-mode-bullet-appearance
(font-lock-add-keywords ;; Bullet items.
nil
- `(((rx line-start (0+ blank) (group-n 1 (any "*+-")) blank)
+ `((,(rx line-start (0+ blank) (group-n 1 (any "*+-")) blank)
1 '(face nil display ,sx-question-mode-bullet-appearance) prepend))))
(font-lock-add-keywords ;; Highlight usernames.
nil
- `(((rx (or blank line-start)
+ `((,(rx (or blank line-start)
(group-n 1 (and "@" (1+ (or (syntax word) (syntax symbol)))))
symbol-end)
1 font-lock-builtin-face)))