dimitri/el-get

Add "when" to "define-obsolete-function-alias" in el-get-status.el

jeffkowalski opened this issue · 1 comments

A recent change in Emacs 28 has made the third argument (WHEN) of define-obsolete-function-alias mandatory. Code that depends on list-utils.el gets repeated error messages because of two uses of that function with only the old-name and new-name signature. The problem is easy to fix: add a date to the definition.

See

(define-obsolete-function-alias 'el-get-package-status 'el-get-read-package-status)

This issue is fixed in #2801.