diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2015-10-05 15:40:17 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2015-10-05 15:40:17 +0200 |
commit | 24bbdc339ea32259d6262b16a9b093fcdf19a210 (patch) | |
tree | 174c6ce0799bdfac8725d4c0f03b463c9708668c | |
parent | 61d7a2d863901b3f8e0babbc85360e88ee0cfaac (diff) | |
parent | 6a388e7718d71634b1cf504cbacce108e499498c (diff) | |
download | geiser-24bbdc339ea32259d6262b16a9b093fcdf19a210.tar.gz geiser-24bbdc339ea32259d6262b16a9b093fcdf19a210.tar.bz2 |
Merge remote-tracking branch 'alezost/indent+highlight'
-rw-r--r-- | elisp/geiser-syntax.el | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el index 6a5cb55..81ba8c6 100644 --- a/elisp/geiser-syntax.el +++ b/elisp/geiser-syntax.el @@ -33,6 +33,7 @@ (catch defun) (class defun) (dynamic-wind 0) + (guard 1) (let*-values 1) (let-values 1) (let/ec 1) @@ -49,9 +50,24 @@ (receive 2) (require-extension 0) (syntax-case 2) + (test-approximate 1) + (test-assert 1) + (test-eq 1) + (test-equal 1) + (test-eqv 1) + (test-group-with-cleanup 1) + (test-runner-on-bad-count! 1) + (test-runner-on-bad-end-name! 1) + (test-runner-on-final! 1) + (test-runner-on-group-begin! 1) + (test-runner-on-group-end! 1) + (test-runner-on-test-begin! 1) + (test-runner-on-test-end! 1) + (test-with-runner 1) (unless 1) (when 1) (while 1) + (with-exception-handler 1) (with-syntax 1)) @@ -76,8 +92,21 @@ "receive" "require-extension" "set!" + "syntax-case" + "test-approximate" + "test-assert" + "test-begin" + "test-end" + "test-eq" + "test-equal" + "test-eqv" + "test-error" + "test-group" + "test-group-with-cleanup" + "test-with-runner" "unless" "when" + "with-exception-handler" "with-input-from-file" "with-output-to-file")) |