branch: elpa/markdown-mode
commit b8637bae075231d70fe7f845305eaba2c0240d89
Merge: e3e11c40cc 71ca08cca7
Author: Shohei YOSHIDA <syo...@gmail.com>
Commit: GitHub <nore...@github.com>

    Merge pull request #860 from jrblevin/fix-older-emacs
    
    Use cl function instead of seq-every-p
---
 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"

Reply via email to