Skip to content

Commit

Permalink
Merge pull request #1249 from vmfhrmfoaj/master
Browse files Browse the repository at this point in the history
Fix undefined function
  • Loading branch information
bbatsov committed Aug 9, 2015
2 parents 1120e5f + bc67276 commit b1a7b1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cider-util.el
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ PROP is the name of a text property."
(setq-local delay-mode-hooks t)
(setq delayed-mode-hooks nil)
(funcall mode)
(font-lock-ensure)
(if (fboundp 'font-lock-ensure)
(font-lock-ensure)
(font-lock-fontify-buffer))
(buffer-string))
string))

Expand Down

0 comments on commit b1a7b1f

Please sign in to comment.