use correct names for quasiquotation operators
authorBrian Templeton <bpt@hcoop.net>
Sat, 10 Jul 2010 00:33:32 +0000 (20:33 -0400)
committerAndy Wingo <wingo@pobox.com>
Tue, 7 Dec 2010 12:21:02 +0000 (13:21 +0100)
commit0dbfdeefc6de02224892d6775aa0b64ade0f0a12
tree91238914937be1f8900f0d096b29f0fac18a9059
parent44ae163d2c469c62352cbce7dbb3542b421a2f8d
use correct names for quasiquotation operators

Use #{`}#, #{,}# and #{,@}# as the quasiquote, unquote and
unquote-splicing operators, respectively. Previously they were named
escaping.

* module/language/elisp/compile-tree-il.scm (unquote?): Change "\," to
  "#{,}#".
  (unquote-splicing): Change "\,@" to "#{,@}#".
  (#{compile-`}#): Rename from #{compile-\`}#.
* module/language/elisp/runtime/function-slot.scm: Import #{compile-`}#
  instead of #{compile-\`}#, and re-export as #{`}# instead of as
  #{\`}#.
* module/language/elisp/parser.scm (quotation-symbols):
* test-suite/tests/elisp-compiler.test ("Eval", "Quotation"):
* test-suite/tests/elisp-reader.test ("Parser"): Change "\`", "\,", and
  "\,@" to "#{`}#", "#{,}#" and "#{,@}#", respectively.
module/language/elisp/compile-tree-il.scm
module/language/elisp/parser.scm
module/language/elisp/runtime/function-slot.scm
test-suite/tests/elisp-compiler.test
test-suite/tests/elisp-reader.test