Steve Purcell

Results 398 comments of Steve Purcell

I made a corresponding change, if you'd like to check it out. Presumably it would need to be released to be useful to you?

> BTW: you removed the coverage dep as well. Yeah, that's fine — folks can add it in and incorporate it via tox or manual installation if they like. It...

I've been working on updating `package-lint` so that it understands much more about which libraries and functions were added/removed in the various Emacs versions. So as a test I've been...

> Neat tool, thanks! But, AFAICT, all of these are false positives: subr-x is available starting in 24.4 (in `lisp/emacs-lisp/subr-x.el`), and that's where these functions are defined. Am I missing...

> Let's just drop Emacs 24 altogether, Very reasonable! > or better yet, Emacs 25 too. The latest Ubuntu LTS still supported is 18.04, which comes with Emacs 25. Support...

Yep, seeing this too in my broken CI builds for some Emacs versions. Specifically, `beacon.el` has ```el (add-function :after after-focus-change-function #'beacon--blink-on-focus) ``` but in Emacs < 27.1, there's no such...

The culprit here is 0cf8b60f62876f3e75653a5fb30d5d5cdd74c586. You can either use `after-focus-change-function` and require Emacs >= 27.1, or use the previous obsolete `focus-{in,out}-hook`. Probably an `(if (boundp 'after-focus-change-function) ... ...)` form could...

Probably it doesn't think during building that its directory is a Git checkout. Looks like a problem with the build process. I mean, it's not exactly a _problem_ with the...

These tarballs are for arbitrary commits and don't contain the version history, so there's no means for the contents of the tarball to determine which commit it came from. There's...

I think your picture of how the process works is skewed. They commit changes to the repo, which results in that commit having a label. There is no build process...