Merge pull request #74936 from acowley/emacs27-seq

emacs: do not use seq package from elpa for emacs >= 27
This commit is contained in:
adisbladis 2019-12-03 21:49:09 +00:00 committed by GitHub
commit 77d1b6cb9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,9 @@ self: let
cl-lib = null; # builtin cl-lib = null; # builtin
tle = null; # builtin tle = null; # builtin
advice = null; # builtin advice = null; # builtin
seq = if lib.versionAtLeast self.emacs.version "27"
then null
else super.seq;
}; };
elpaPackages = super // overrides; elpaPackages = super // overrides;