diff options
| author | Mattias EngdegÄrd | 2025-09-01 16:50:10 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2025-09-01 16:50:10 +0200 |
| commit | b52ccb997d598caa321141c0abb553d3b3803eee (patch) | |
| tree | e33f1a5dfd57cfe46ff15618bc93922fba6421d4 | |
| parent | 9c21c112770949b23829d2f3ad319d6b0fb9d089 (diff) | |
| download | emacs-b52ccb997d598caa321141c0abb553d3b3803eee.tar.gz emacs-b52ccb997d598caa321141c0abb553d3b3803eee.zip | |
; * lisp/emacs-lisp/bytecomp.el (featurep): mistake in last change
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 45a11af9a74..4fc56ae4b5d 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -5885,7 +5885,7 @@ and corresponding effects." | |||
| 5885 | ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so | 5885 | ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so |
| 5886 | ;; we can safely optimize away this test. | 5886 | ;; we can safely optimize away this test. |
| 5887 | (if (and (member feature '('xemacs 'sxemacs 'emacs)) (not rest)) | 5887 | (if (and (member feature '('xemacs 'sxemacs 'emacs)) (not rest)) |
| 5888 | (featurep feature) | 5888 | (featurep (cadr feature)) |
| 5889 | form))) | 5889 | form))) |
| 5890 | 5890 | ||
| 5891 | ;; Report comma operator used outside of backquote. | 5891 | ;; Report comma operator used outside of backquote. |