~cl -> cl-lib along with functions cl-*

This was why I was getting the error, by using cl-* name spacing, I
remove the errors Emacs kept giving me.
This commit is contained in:
dx
2020-05-02 07:14:20 +01:00
parent 980911c5cc
commit 548072ba7e

View File

@@ -1,6 +1,6 @@
;;; private/gentemplate/config.el -*- lexical-binding: t; -*-
(require 'cl)
(require 'cl-lib)
(defvar +gentemplate/profile-url
"https://github.com/oreodave/"
@@ -11,7 +11,7 @@
"List of templates to use, relative to the profile-url")
(defun +gentemplate/offline ()
(eq (list-length (network-interface-list)) 1))
(eq (cl-list-length (network-interface-list)) 1))
(defun +gentemplate/copy-template (template-name dest)
"Copy a template project via it's `template-name' to a folder called `dest'"