diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-04-28 16:33:08 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-04-28 18:14:24 +0200 |
commit | a0ee542d9e3ed345f62a5305cb966efebd70886e (patch) | |
tree | 035ee960670e0b39fdc6a7b7bdc4edc73d918c34 /test/lisp/emacs-lisp/pcase-tests.el | |
parent | 13f64b052f5104e143ec1c14f47a0738c26f5766 (diff) | |
download | emacs-a0ee542d9e3ed345f62a5305cb966efebd70886e.tar.gz |
Use lexical-binding in many emacs-lisp tests
* test/lisp/emacs-lisp/bytecomp-tests.el:
* test/lisp/emacs-lisp/ert-x-tests.el:
* test/lisp/emacs-lisp/nadvice-tests.el:
* test/lisp/emacs-lisp/pcase-tests.el:
* test/lisp/emacs-lisp/seq-tests.el:
* test/lisp/emacs-lisp/subr-x-tests.el:
* test/lisp/emacs-lisp/text-property-search-tests.el: Use
lexical-binding.
* test/lisp/emacs-lisp/seq-tests.el (test-seq-filter)
(test-seq-remove, test-seq-count, test-seq-every-p): Silence
byte-compiler.
Diffstat (limited to 'test/lisp/emacs-lisp/pcase-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/pcase-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/pcase-tests.el b/test/lisp/emacs-lisp/pcase-tests.el index 0b69bd99f32..ac512416b71 100644 --- a/test/lisp/emacs-lisp/pcase-tests.el +++ b/test/lisp/emacs-lisp/pcase-tests.el @@ -1,4 +1,4 @@ -;;; pcase-tests.el --- Test suite for pcase macro. +;;; pcase-tests.el --- Test suite for pcase macro. -*- lexical-binding:t -*- ;; Copyright (C) 2012-2020 Free Software Foundation, Inc. |