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

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

[elpa] master dfae733 3/7: Add TODO


From: Artur Malabarba
Subject: [elpa] master dfae733 3/7: Add TODO
Date: Wed, 04 May 2016 15:00:36 +0000

branch: master
commit dfae733bf0cea4988a23ab18f5b0c2a8d16682ca
Author: Artur Malabarba <address@hidden>
Commit: Artur Malabarba <address@hidden>

    Add TODO
---
 validate.el |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/validate.el b/validate.el
index ef628e9..0482be3 100644
--- a/validate.el
+++ b/validate.el
@@ -21,7 +21,7 @@
 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
-
+;;
 ;; This library offers two functions that perform schema validation.
 ;; Use this is your Elisp packages to provide very informative error
 ;; messages when your users accidentally misconfigure a variable.
@@ -46,6 +46,10 @@
 ;; custom variable matches its custom-type, while `validate-value' checks an
 ;; arbitrary value against an arbitrary schema.
 
+;;; Todo:
+;;
+;; :inline, `plist',`coding-system',`color',`hook',`restricted-sexp'.
+
 ;;; Code:
 (require 'cl-lib)
 (require 'seq)
@@ -68,7 +72,7 @@ If they don't match, return an explanation."
     (setq args (or (plist-get props :args)
                    args))
     (let ((r
-           (cl-labels ((wtype ;wrong-type
+           (cl-labels ((wtype           ;wrong-type
                         (tt) (unless (funcall (intern (format "%sp" tt)) value)
                                (format "not a %s" tt))))
              ;; TODO: hook (top-level only).



reply via email to

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