From 1445e744572997c991780e13542998e4b53c09d0 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 27 Aug 2024 14:02:34 -0400 Subject: [PATCH] fix(el-patch): move config out of block tangled to packages --- config.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.org b/config.org index 9844d86..71eaefe 100644 --- a/config.org +++ b/config.org @@ -775,12 +775,9 @@ Emacs's runtime and configuration systems are designed to be as flexible as poss #+begin_src emacs-lisp :tangle packages.el (package! el-patch) - -(after! el-patch - (setq el-patch-warn-on-eval-template nil)) #+end_src -The package allows you to define /patches/ which modify the definitions of functions in systematic ways. The suite of tools provided by the package is easily comprehensive enough for my needs, but we can make the API a bit nicer with some macros: +The package allows you to define /patches/ which modify the definitions of functions in systematic ways. The suite of tools provided by the package is easily comprehensive enough for my needs, but we can make the API a bit nicer with some macros and configure options: #+begin_src emacs-lisp (defmacro defpatch! (feature type-name &rest args) @@ -805,6 +802,9 @@ The package allows you to define /patches/ which modify the definitions of funct (after! ,feature ,template)) template))) + +(after! el-patch + (setq el-patch-warn-on-eval-template nil)) #+end_src ** Automated Nix Builds