diff options
author | Thanos Apollo <[email protected]> | 2023-10-03 07:10:33 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-03 07:10:33 +0300 |
commit | 72e5b5c28218c5882c73b7683a38fc14d71d5956 (patch) | |
tree | 75b58bc60db64e8cd01f7b6bbebf55199886bf08 | |
parent | 6c7657e90d273dda34865e71120681245dab36e4 (diff) |
yeetube: Change requirments to emacs-29.1
This package uses defvar-keymap, which requires/is available at emacs
29.1 version.
defvar-keymap is not a must have, we could use the old way to define a
keymap but since this a more elegant way, and emacs-29.1 is the
default release version that's available on all distros I don't think
it'd be an issue.
-rw-r--r-- | yeetube.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ ;; Version: 2.0.4 (defvar yeetube--version '2.0.4) -;; Package-Requires: ((emacs "27.2")) +;; Package-Requires: ((emacs "29.1")) ;; 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 |