diff options
author | Craig Earls <enderw88@gmail.com> | 2016-02-28 18:30:25 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2016-02-28 18:30:25 -0700 |
commit | 432733de2d102274c158c7c01a96f1bbd45c4486 (patch) | |
tree | 486c735dca092ea9698460ff9660168bace3b2f2 /lisp/ledger-fontify.el | |
parent | b7f84d69001f75a18807772dee514f5918e3a926 (diff) | |
download | ledger-432733de2d102274c158c7c01a96f1bbd45c4486.tar.gz ledger-432733de2d102274c158c7c01a96f1bbd45c4486.tar.bz2 ledger-432733de2d102274c158c7c01a96f1bbd45c4486.zip |
Globally changed set-text-properties to use 'font-lock-face vice 'face. This was a compatibility problem with spacemacs.
Diffstat (limited to 'lisp/ledger-fontify.el')
-rw-r--r-- | lisp/ledger-fontify.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ledger-fontify.el b/lisp/ledger-fontify.el index 076e52b7..b06fff2a 100644 --- a/lisp/ledger-fontify.el +++ b/lisp/ledger-fontify.el @@ -193,7 +193,7 @@ Fontify the first line of an xact" (defun ledger-fontify-set-face (extents face) "Set the text in EXTENTS to FACE." - (put-text-property (car extents) (cadr extents) 'face face)) + (put-text-property (car extents) (cadr extents) 'font-lock-face face)) (provide 'ledger-fontify) |