branch: externals/url-scgi commit e9e8323d861eae85455aab525126725fc7d8a620 Author: Stefan Kangas <skan...@skangas.se> Commit: Stefan Kangas <skan...@skangas.se>
Use new 'cl-lib rather than old 'cl --- url-scgi.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/url-scgi.el b/url-scgi.el index 3f97657a19..d95a298511 100644 --- a/url-scgi.el +++ b/url-scgi.el @@ -5,6 +5,7 @@ ;; Author: Stefan Kangas <stefankan...@gmail.com> ;; Version: 0.3 ;; Keywords: comm, data, processes, scgi +;; Package-Requires: ((cl-lib "0.5")) ;; This file is NOT part of GNU Emacs. @@ -37,6 +38,7 @@ ;;; Code: +(require 'cl-lib) (require 'url-parse) (defvar url-scgi-version "0.3" @@ -82,7 +84,7 @@ ;;;###autoload (defun url-scgi (url callback cbargs) "Handle SCGI URLs from internal Emacs functions." - (check-type url vector "Need a pre-parsed URL.") + (cl-check-type url vector "Need a pre-parsed URL.") (declare (special url-scgi-connection-opened url-callback-function url-callback-arguments