diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-02 07:14:20 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-05 02:59:45 +0100 |
commit | 548072ba7ee3f0efab8bfac1a4b402e4f431db69 (patch) | |
tree | 429d534dddac39f96eeced52de565ad57748e0ea /Doom/.doom.d/modules/private/gentemplate | |
parent | 980911c5cc67874c96b112f8da8afbef49d7e71d (diff) | |
download | dotfiles-548072ba7ee3f0efab8bfac1a4b402e4f431db69.tar.gz dotfiles-548072ba7ee3f0efab8bfac1a4b402e4f431db69.tar.bz2 dotfiles-548072ba7ee3f0efab8bfac1a4b402e4f431db69.zip |
~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.
Diffstat (limited to 'Doom/.doom.d/modules/private/gentemplate')
-rw-r--r-- | Doom/.doom.d/modules/private/gentemplate/config.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doom/.doom.d/modules/private/gentemplate/config.el b/Doom/.doom.d/modules/private/gentemplate/config.el index 20ab4ca..d843cc2 100644 --- a/Doom/.doom.d/modules/private/gentemplate/config.el +++ b/Doom/.doom.d/modules/private/gentemplate/config.el @@ -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'" |