diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-04 13:06:33 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-04 13:06:33 +0200 |
commit | 4865ded5516a6e6705136c5b87466f864925ff96 (patch) | |
tree | 1694e3eadb6519543d9b26106477d96e5e14e311 /test/lisp/progmodes/xref-tests.el | |
parent | 841b11ed0d534d707f54160f8c7efe3b883eb3ed (diff) | |
download | emacs-4865ded5516a6e6705136c5b87466f864925ff96.tar.gz emacs-4865ded5516a6e6705136c5b87466f864925ff96.tar.bz2 emacs-4865ded5516a6e6705136c5b87466f864925ff96.zip |
Remove redundant #' before lambda in tests
* test/lisp/electric-tests.el (save-electric-modes)
(inhibit-in-mismatched-string-inside-ruby-comments)
(inhibit-in-mismatched-string-inside-c-comments, js-mode-braces)
(js-mode-braces-with-layout)
(js-mode-braces-with-layout-and-indent, autowrapping-1)
(autowrapping-2, autowrapping-3, autowrapping-4, autowrapping-5)
(autowrapping-6, autowrapping-7):
* test/lisp/progmodes/xref-tests.el
(xref--xref-file-name-display-is-relative-to-project-root):
* test/src/thread-tests.el (threads-signal-early)
(threads-signal-main-thread): Remove redundant #' before lambda.
Diffstat (limited to 'test/lisp/progmodes/xref-tests.el')
-rw-r--r-- | test/lisp/progmodes/xref-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/progmodes/xref-tests.el b/test/lisp/progmodes/xref-tests.el index 9982c32d41d..c25bbd94775 100644 --- a/test/lisp/progmodes/xref-tests.el +++ b/test/lisp/progmodes/xref-tests.el @@ -143,7 +143,7 @@ (let* ((data-parent-dir (file-name-directory (directory-file-name xref-tests--data-dir))) (project-find-functions - #'(lambda (_) (cons 'transient data-parent-dir))) + (lambda (_) (cons 'transient data-parent-dir))) (xref-file-name-display 'project-relative) ;; Some older BSD find versions can produce '//' in the output. (expected (list |