From 57709c323c9c94717626fffd496236a8f1eb8e08 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 5 Apr 2020 12:37:05 +0200 Subject: Use highlight-numbers-number instead of writing my own number parser MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is cleaner, more maintainable, and it has a couple of added benefits: 1. It will no longer be troublesome for people switching between themes, since the hook that we automatically injected would still be there. 2. Lexical binding is not discarded, with all its benefits. As suggested by @riscy in https://github.com/melpa/melpa/pull/6808. Signed-off-by: Miquel Sabaté Solà --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 739d3bf..73c9b10 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ PKG = soria ELS_ALL = $(wildcard *.el) ELS = $(filter-out $(PKG)-autoloads.el,$(ELS_ALL)) +OBJECTS = $(ELS:.el=.elc) EMACS ?= emacs BATCH = $(EMACS) --quick --batch $(LOAD_PATH) @@ -20,7 +21,7 @@ version: .PHONY: clean clean: - @rm -rf $(TOP)vendor/* $(PKG)-autoloads.el* + @rm -rf $(TOP)vendor/* $(PKG)-autoloads.el* $(OBJECTS) ## # Test -- cgit v1.2.3