-
-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
Description
Elpaca Version
Elpaca f752db6 HEAD -> master, origin/master, origin/HEAD
installer: 0.6
emacs-version: GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.18.0)
git --version: git version 2.42.0
Operating System
Linux 6.6.8, NixOS, 24.05 (Uakari), 24.05.20231222.6df37dc
Description
Debugger entered--Lisp error: (wrong-type-argument number-or-marker-p ((emacs "Unable to determine elpaca--core-date" nil nil)))
version-list-<((((emacs "Unable to determine elpaca--core-date" nil nil))) (20231204))
Emacs is unable to load my config properly because of git-commit
inability to be updated (elpaca--core-date
), which is caused by my use of Emacs built from the master branch. And I think the cause for this issue lies within elpaca.el
lack of support for master branch versions of Emacs.
Lines 1106 to 1111 in f752db6
(defvar elpaca--core-date | |
(list (or (and emacs-build-time (string-to-number (format-time-string "%Y%m%d" emacs-build-time))) | |
(alist-get emacs-version '(("27.1" . 20200804) ("27.2" . 20210319) ("28.1" . 20220403) | |
("28.2" . 20220912) ("29.1" . 20230730)) | |
nil nil #'equal) | |
(warn "Unable to determine elpaca--core-date")))) |
Therefore I thought I should ask if there is a plan to support master branch versions of Emacs or not
mplanchard