branch: elpa/markdown-mode commit 71ca08cca726e3938f9d09030c35a027eb425a50 Author: Shohei YOSHIDA <syo...@gmail.com> Commit: Shohei YOSHIDA <syo...@gmail.com>
Use cl function instead of seq-every-p seq-every-p and apply-partially is not autoloaded function on older emacs --- markdown-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown-mode.el b/markdown-mode.el index 414d5052be..99c61cb718 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -370,7 +370,7 @@ Math support can be enabled, disabled, or toggled later using (defcustom markdown-css-paths nil "List of URLs of CSS files to link to in the output XHTML." :group 'markdown - :safe (apply-partially #'seq-every-p #'stringp) + :safe (lambda (x) (and (listp x) (cl-every #'stringp x))) :type '(repeat (string :tag "CSS File Path"))) (defcustom markdown-content-type "text/html"