branch: externals/consult commit 8de9ba3e543f73be64a6eabce592f4f73d7296b2 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
consult--read: Drop cl-assert (Fix #1219) --- consult.el | 8 -------- 1 file changed, 8 deletions(-) diff --git a/consult.el b/consult.el index a495880661..4417143b33 100644 --- a/consult.el +++ b/consult.el @@ -2912,14 +2912,6 @@ INHERIT-INPUT-METHOD, if non-nil the minibuffer inherits the input method. ASYNC-WRAP wraps asynchronous functions and defaults to `consult--async-wrap'." - ;; supported types - (cl-assert (or (functionp table) ;; dynamic table or asynchronous function - (obarrayp table) ;; obarray - (hash-table-p table) ;; hash table - (not table) ;; empty list - (stringp (car table)) ;; string list - (and (consp (car table)) (stringp (caar table))) ;; string alist - (and (consp (car table)) (symbolp (caar table))))) ;; symbol alist (ignore prompt predicate require-match history default keymap category initial narrow initial-narrow add-history annotate state preview-key sort lookup group inherit-input-method async-wrap)