summaryrefslogtreecommitdiff
path: root/cider-overlays.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-10-20 16:46:20 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2015-10-20 16:46:20 +0300
commit6d6078f81421e2b587e3a3007ddb105e7111b242 (patch)
tree898e9cfb76695b30fa45889775332f11e0fb4e78 /cider-overlays.el
parent04a0703f819d4311c2ea59381b5f3c5c389031de (diff)
[Fix #1378] cider-ovelays-use-font-lock -> cider-overlays-use-font-lock
Diffstat (limited to 'cider-overlays.el')
-rw-r--r--cider-overlays.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/cider-overlays.el b/cider-overlays.el
index 5ce5462d..92d9a31f 100644
--- a/cider-overlays.el
+++ b/cider-overlays.el
@@ -34,7 +34,7 @@
(defface cider-result-overlay-face
'((t :inherit font-lock-builtin-face))
"Face used to display evaluation results at the end of line.
-Only used on the result string if `cider-ovelays-use-font-lock' is nil.
+Only used on the result string if `cider-overlays-use-font-lock' is nil.
If it is non-nil, this face is only used on the prefix (usually a \"=>\")."
:group 'cider
:package-version "0.9.1")
@@ -45,7 +45,7 @@ If it is non-nil, this face is only used on the prefix (usually a \"=>\")."
:type 'boolean
:package-version '(cider . "0.10.0"))
-(defcustom cider-ovelays-use-font-lock nil
+(defcustom cider-overlays-use-font-lock nil
"If non-nil, results overlays are font-locked as Clojure code.
If nil, apply `cider-result-overlay-face' to the entire overlay instead of
font-locking it."
@@ -153,7 +153,7 @@ overlay."
(line-beginning-position) (line-end-position)
type
'after-string
- (if cider-ovelays-use-font-lock
+ (if cider-overlays-use-font-lock
display-string
(propertize display-string 'face 'cider-result-overlay-face))
props)))