summaryrefslogtreecommitdiff
path: root/test.el
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell@mumble.net>2011-03-22 22:53:50 +0000
committerTaylor R Campbell <campbell@mumble.net>2011-03-22 22:53:50 +0000
commit2c972a91f923734998b1aa911fabdc8ec09450d7 (patch)
tree54eb38db2b55fa9ad677c866394ee267581bdf02 /test.el
parentd9ecc6d686c52255e764f69d6029c916cb67bc8a (diff)
Omit angled delimiters from the `paredit-open-...' tests.
Ignore-this: 888d2d202ce3629fc0f7a81c29b17c7a The `paredit-open-...' commands now use `backward-up-list', which doesn't work for angled delimiters because their character syntax in Scheme Mode is not that of list delimiters. darcs-hash:20110322225350-00fcc-58ee30fc89b11d96d0e7e8ae5df5ca20b34dee6c
Diffstat (limited to 'test.el')
-rw-r--r--test.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test.el b/test.el
index 3dd9f83..23a684a 100644
--- a/test.el
+++ b/test.el
@@ -75,7 +75,8 @@ Three arguments: the paredit command, the text of the buffer
(paredit-test-bracketed '((paredit-open-round ?\( ?\))
(paredit-open-square ?\[ ?\])
(paredit-open-curly ?\{ ?\})
- (paredit-open-angled ?\< ?\>))
+ ;; (paredit-open-angled ?\< ?\>)
+ )
'(("(foo|bar)" "(foo (|) bar)")
("(foo| bar)" "(foo (|) bar)")
("(foo |bar)" "(foo (|) bar)")