diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2019-06-20 22:18:29 +0100 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2019-06-20 22:18:29 +0100 |
| commit | 9a552f0c7c20eefae09a9283be98d56dc3e20fd8 (patch) | |
| tree | d2e6067ebab3ccc96566e8a7320e5a084be792b6 | |
| parent | 897feba75ded5c93dcfc3d950319cf19c03252db (diff) | |
Relax minimum Emacs version
Helpful relies on several 24.x Emacs features (defvar-local, nadvice,
lexical binding), but the only 25.x feature is macroexpand-1.
`M-x package-lint-current-buffer` is happy with this change.
Fixes #205
| -rw-r--r-- | helpful.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ ;; URL: https://github.com/Wilfred/helpful ;; Keywords: help, lisp ;; Version: 0.17 -;; Package-Requires: ((emacs "25.1") (dash "2.12.0") (dash-functional "1.2.0") (s "1.11.0") (f "0.20.0") (elisp-refs "1.2")) +;; Package-Requires: ((emacs "25") (dash "2.12.0") (dash-functional "1.2.0") (s "1.11.0") (f "0.20.0") (elisp-refs "1.2")) ;; 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 |
