branch: master commit b28e8969196beed4e1f8240cd5d5f49ea24d5000 Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com> Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Add complex nesting to let test. --- test/context-coloring-test.el | 6 +++++- test/fixtures/let.el | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/test/context-coloring-test.el b/test/context-coloring-test.el index f98d935..234084c 100644 --- a/test/context-coloring-test.el +++ b/test/context-coloring-test.el @@ -1141,7 +1141,11 @@ see that function." (context-coloring-test-assert-coloring " 1111 11 11 01 - 11 000011 + 11 00001 + 11 2222 22 + 22 02 + 22 000022 + 2222 2 2 2 00002211 1111 1 1 1 000011"))) (context-coloring-test-deftest-emacs-lisp-mode let* diff --git a/test/fixtures/let.el b/test/fixtures/let.el index 3b869ce..11637b1 100644 --- a/test/fixtures/let.el +++ b/test/fixtures/let.el @@ -1,4 +1,8 @@ (let (a (b a) - (c free)) + (c free) + (d (let (a + (b a) + (c free)) + (and a b c free)))) (and a b c free))