emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/markdown-mode 71ca08cca7 1/2: Use cl function instead of s


From: ELPA Syncer
Subject: [nongnu] elpa/markdown-mode 71ca08cca7 1/2: Use cl function instead of seq-every-p
Date: Sun, 17 Nov 2024 13:00:37 -0500 (EST)

branch: elpa/markdown-mode
commit 71ca08cca726e3938f9d09030c35a027eb425a50
Author: Shohei YOSHIDA <syohex@gmail.com>
Commit: Shohei YOSHIDA <syohex@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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]