diff options
author | Sean Allred <code@seanallred.com> | 2017-05-21 20:32:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-21 20:32:38 -0500 |
commit | 8f1e3346286cfa5a5299ef192cc5aca3f37a7745 (patch) | |
tree | 489c00633ce9f9e12efa6f33badae496730e8d19 | |
parent | de73e993930f910862698727b5c0d93a1f656deb (diff) | |
parent | db75bd64cd85cb4515ab36afeb04b54722ff0a06 (diff) |
Merge pull request #330 from ylluminarious/patch-1
Updated markdown-code-at-point-p to markdown-inline-code-at-point-p
-rw-r--r-- | sx-question-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index 6599532..4ab6cfd 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -572,7 +572,7 @@ font-locks code-blocks according to mode." "Return non-nil if point is inside code. This can be inline Markdown code or a Markdown code-block." (save-match-data - (or (markdown-code-at-point-p) + (or (markdown-inline-code-at-point-p) (save-excursion (sx-question-mode--skip-and-fontify-pre 'dont-fontify))))) |