diff options
author | George D. Plymale II <georgedp@orbitalimpact.com> | 2017-05-21 20:57:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-21 20:57:54 -0400 |
commit | db75bd64cd85cb4515ab36afeb04b54722ff0a06 (patch) | |
tree | 489c00633ce9f9e12efa6f33badae496730e8d19 | |
parent | de73e993930f910862698727b5c0d93a1f656deb (diff) |
Updated markdown-code-at-point-p to markdown-inline-code-at-point-p
markdown-code-at-point-p was renamed in this commit: https://github.com/jrblevin/markdown-mode/commit/8cc6e00f9df400b40c3945189e4b44fcce7caae2
-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))))) |