summaryrefslogtreecommitdiff
path: root/elisp/geiser-base.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2016-06-12 18:32:48 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2016-06-12 18:32:48 +0200
commite33305afaef53e296cbcf468dafec460f3661793 (patch)
tree39511085271c318bebc9dd79dc43a5b22b98facf /elisp/geiser-base.el
parentbb990e11cd91956d10d156982d29cec50fee75bf (diff)
downloadgeiser-e33305afaef53e296cbcf468dafec460f3661793.tar.gz
geiser-e33305afaef53e296cbcf468dafec460f3661793.tar.bz2
Real fix fontification on scheme switch
Diffstat (limited to 'elisp/geiser-base.el')
-rw-r--r--elisp/geiser-base.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/elisp/geiser-base.el b/elisp/geiser-base.el
index 4d303db..ee30770 100644
--- a/elisp/geiser-base.el
+++ b/elisp/geiser-base.el
@@ -1,6 +1,6 @@
;;; geiser-base.el --- shared bits
-;; Copyright (C) 2009, 2010, 2012, 2013, 2015 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010, 2012, 2013, 2015, 2016 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -27,6 +27,14 @@
(let ((inhibit-changing-match-data t))
(looking-at regexp))))
+(when (not (fboundp 'font-lock-ensure))
+ (defun font-lock-ensure (&optional beg end)
+ (with-no-warnings (font-lock-fontify-region (or beg (point-min))
+ (or end (point-max))))))
+
+(when (not (fboundp 'font-lock-flush))
+ (defun font-lock-flush (&optional beg end)))
+
;;; Utilities:
(defsubst geiser--chomp (str)