diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-08-08 11:50:33 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-08-08 11:50:33 +0200 |
commit | 60738e569d24b74b9e6973225d143b3468bfc60f (patch) | |
tree | c13f8b2999b8af3e2c637af6a7f7185b997d7a83 /test/lisp/emacs-lisp | |
parent | 77bf50cb330807039cc84138fb84870bd6d532e2 (diff) | |
download | emacs-60738e569d24b74b9e6973225d143b3468bfc60f.tar.gz emacs-60738e569d24b74b9e6973225d143b3468bfc60f.tar.bz2 emacs-60738e569d24b74b9e6973225d143b3468bfc60f.zip |
Remove no-byte-compile cookie from some libraries
This gives us back byte-compiler warnings for these files.
* lisp/mh-e/mh-acros.el:
* test/lisp/comint-tests.el:
* test/lisp/emacs-lisp/nadvice-tests.el:
* test/lisp/emacs-lisp/syntax-tests.el:
* test/lisp/xml-tests.el:
* test/src/font-tests.el: Remove no-byte-compile cookie.
* test/src/font-tests.el (font-parse-explain): Fix warning.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/nadvice-tests.el | 4 | ||||
-rw-r--r-- | test/lisp/emacs-lisp/syntax-tests.el | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/test/lisp/emacs-lisp/nadvice-tests.el b/test/lisp/emacs-lisp/nadvice-tests.el index a675986b90b..fa76c725655 100644 --- a/test/lisp/emacs-lisp/nadvice-tests.el +++ b/test/lisp/emacs-lisp/nadvice-tests.el @@ -213,8 +213,4 @@ function being an around advice." (should (equal (cl-prin1-to-string (car x)) "#f(advice first :before #f(advice car :after cdr))")))) -;; Local Variables: -;; no-byte-compile: t -;; End: - ;;; nadvice-tests.el ends here diff --git a/test/lisp/emacs-lisp/syntax-tests.el b/test/lisp/emacs-lisp/syntax-tests.el index 53812c0c80c..f266db5c702 100644 --- a/test/lisp/emacs-lisp/syntax-tests.el +++ b/test/lisp/emacs-lisp/syntax-tests.el @@ -60,8 +60,4 @@ (should-error (syntax-propertize--shift-groups-and-backrefs "\\(a\\)\\3" 7))) -;; Local Variables: -;; no-byte-compile: t -;; End: - ;;; syntax-tests.el ends here. |