summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien <bzg@gnu.org>2018-10-15 22:49:46 +0200
committerBastien <bzg@gnu.org>2018-10-15 22:49:46 +0200
commit99b6a481ca64c1ec847bf52e4cb1cd051a778273 (patch)
treefbe7bd1ed71c200c14463b64a9fc3318f2651fda
parent83f97cbd875ec335f2f97ec89b9dd63080f08df0 (diff)
parent823d9048e78dd51af6bb68e6ed51524a58b2a73a (diff)
downloadorg-mode-99b6a481ca64c1ec847bf52e4cb1cd051a778273.tar.gz
Merge branch 'master' of code.orgmode.org:bzg/org-mode
-rw-r--r--lisp/org-goto.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org-goto.el b/lisp/org-goto.el
index 1c265cf..f3c1672 100644
--- a/lisp/org-goto.el
+++ b/lisp/org-goto.el
@@ -176,7 +176,8 @@ When nil, you can use these keybindings to navigate the buffer:
(let ((keys (this-command-keys)))
(when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
(isearch-mode t)
- (isearch-process-search-char (string-to-char keys)))))
+ (isearch-process-search-char (string-to-char keys))
+ (org-font-lock-ensure))))
(defun org-goto-ret (&optional _arg)
"Finish `org-goto' by going to the new location."