~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:
@@ -1,6 +1,6 @@
|
|||||||
;;; private/gentemplate/config.el -*- lexical-binding: t; -*-
|
;;; private/gentemplate/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(require 'cl)
|
(require 'cl-lib)
|
||||||
|
|
||||||
(defvar +gentemplate/profile-url
|
(defvar +gentemplate/profile-url
|
||||||
"https://github.com/oreodave/"
|
"https://github.com/oreodave/"
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
"List of templates to use, relative to the profile-url")
|
"List of templates to use, relative to the profile-url")
|
||||||
|
|
||||||
(defun +gentemplate/offline ()
|
(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)
|
(defun +gentemplate/copy-template (template-name dest)
|
||||||
"Copy a template project via it's `template-name' to a folder called `dest'"
|
"Copy a template project via it's `template-name' to a folder called `dest'"
|
||||||
|
|||||||
Reference in New Issue
Block a user