From 0fc53aec356daafd14aa6e8a192d37975863e394 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 1 Nov 2024 07:20:50 -0700 Subject: [PATCH] Remove handle dependency I've never actually used it and it was causing errors in Guix. --- oni-elisp/oni-elisp.el | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/oni-elisp/oni-elisp.el b/oni-elisp/oni-elisp.el index 30475ef..2c4122c 100644 --- a/oni-elisp/oni-elisp.el +++ b/oni-elisp/oni-elisp.el @@ -4,8 +4,8 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2023.0411.133217 -;; Package-Requires: (oni-company oni-flycheck oni-paredit oni-yasnippet oni-hydra rainbow-delimiters nameless erefactor flycheck-relint handle elisp-format) +;; Version: 2024.1101.071725 +;; Package-Requires: (oni-company oni-flycheck oni-paredit oni-yasnippet oni-hydra rainbow-delimiters nameless erefactor flycheck-relint elisp-format) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -28,7 +28,6 @@ (require 'checkdoc) (require 'flycheck-relint) -(require 'handle) (require 'hydra) (require 'yasnippet) @@ -141,9 +140,5 @@ _eb_: Buffer (setq checkdoc-spellcheck-documentation-flag t) -(handle '(emacs-lisp-mode inferior-emacs-lisp-mode) - :repls 'ielm - :formatters 'elisp-format-buffer) - (provide 'oni-elisp) ;;; oni-elisp.el ends here