branch: elpa/paredit
commit 2c972a91f923734998b1aa911fabdc8ec09450d7
Author: Taylor R Campbell <[email protected]>
Commit: Taylor R Campbell <[email protected]>
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
---
test.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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)")