diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-19 16:28:27 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-19 16:28:27 +0100 |
commit | 80f5fcfb384e17cad114cc497651acc536008ff1 (patch) | |
tree | d0240554f8c57aa9fc4f40a4430f1baddd2b0367 /sx-question-print.el | |
parent | df963e70ca629905179f05d082460ce968d5bd66 (diff) |
Improve sx-question-mode-bullet-appearance default value
Diffstat (limited to 'sx-question-print.el')
-rw-r--r-- | sx-question-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 5347eb9..ed13b71 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -423,7 +423,7 @@ where `value' is given `face' as its face. ;;;; Printing and Font-locking the content (body) (defvar sx-question-mode-bullet-appearance - (propertize (if (char-displayable-p ?•) " •" " *") + (propertize (if (char-displayable-p ?•) "•" "*") 'face 'markdown-list-face) "String to be displayed as the bullet of markdown list items.") |