branch: elpa/markdown-mode commit 6d64f9e96203b1e76e3f0adfd2f545b5b02f5ffb Merge: 137696f ae2187f Author: Shohei YOSHIDA <syo...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #583 from jrblevin/byte-compile Fix byte-compile warnings for newer Emacs --- markdown-mode.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/markdown-mode.el b/markdown-mode.el index 4d9ab78..d784b98 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -116,7 +116,8 @@ arguments." :type '(choice file function (const :tag "None" nil))) (defcustom markdown-open-image-command nil - "Command used for opening image files directly at `markdown-follow-link-at-point'." + "Command used for opening image files directly. +This is used at `markdown-follow-link-at-point'." :group 'markdown :type '(choice file function (const :tag "None" nil))) @@ -2140,7 +2141,7 @@ Depending on your font, some reasonable choices are: (defconst markdown-footnote-chars "[[:alnum:]-]" - "Regular expression matching any character that is allowed in a footnote identifier.") + "Regular expression matching any character for a footnote identifier.") (defconst markdown-regex-footnote-definition (concat "^ \\{0,3\\}\\[\\(\\^" markdown-footnote-chars "*?\\)\\]:\\(?:[ \t]+\\|$\\)")