diff options
Diffstat (limited to 'test.el')
-rw-r--r-- | test.el | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -287,7 +287,9 @@ Four arguments: the paredit command, the text of the buffer ("|\\\\\\\\" "|\\\\" "|" error) ("\\\\|\\\\" "\\\\|" error) ("(|\\\\\\\\)" "(|\\\\)" "(|)" "|" error) - ("(\\\\|\\\\)" "(\\\\|)" "(\\\\|)"))) + ("(\\\\|\\\\)" "(\\\\|)" "(\\\\|)") + ("|(" "|" error) + ("|)" "|" error))) (paredit-test 'paredit-backward-delete '(("fo|o" "f|o") @@ -304,7 +306,9 @@ Four arguments: the paredit command, the text of the buffer ("\\\\\\\\|" "\\\\|" "|" error) ("\\\\|\\\\" "|\\\\" error) ("(\\\\\\\\|)" "(\\\\|)" "(|)" "|" error) - ("(\\\\|\\\\)" "(|\\\\)" "(|\\\\)"))) + ("(\\\\|\\\\)" "(|\\\\)" "(|\\\\)") + ("(|" "|" error) + (")|" "|" error))) (dolist (command '(paredit-delete-region paredit-kill-region)) ;++ Need to check whether `paredit-kill-region' updates the kill ring |