branch: externals/compat commit 543805066af805ee4df449d5288229bfa8293c66 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Remove unnecessary :feature arguments from compat-defuns --- compat-25.el | 1 - compat-28.el | 1 - 2 files changed, 2 deletions(-) diff --git a/compat-25.el b/compat-25.el index 64d7fff47a..42fa9e0a5a 100644 --- a/compat-25.el +++ b/compat-25.el @@ -195,7 +195,6 @@ threading." (compat-defun macroexpand-1 (form &optional environment) ;; <OK> "Perform (at most) one step of macro expansion." - :feature macroexp (cond ((consp form) (let* ((head (car form)) diff --git a/compat-28.el b/compat-28.el index 0235ce44a4..3cf133ff40 100644 --- a/compat-28.el +++ b/compat-28.el @@ -745,7 +745,6 @@ A non-nil result is expected to be reliable when called from a macro in order to find the file in which the macro's call was found, and it should be reliable as well when used at the top-level of a file. Other uses risk returning non-nil value that point to the wrong file." - :feature macroexp (let ((file (car (last current-load-list)))) (or (if (stringp file) file) (bound-and-true-p byte-compile-current-file))))