diff options
author | Taylor R Campbell <campbell@mumble.net> | 2013-06-16 14:50:11 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2013-06-16 14:50:17 +0000 |
commit | aa26b483d4437d317babfca722446a4d89c726d9 (patch) | |
tree | ceed5b94662e5009eca27c33c01ff585af8e6abf | |
parent | 856d927bfb94c9a39005a92a7c71ba8f62a42115 (diff) |
Make sure M-? leaves space appropriately when there was none.
-rw-r--r-- | test.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1223,6 +1223,7 @@ Four arguments: the paredit command, the text of the buffer ("(let ((x 0)) (progn| ))" "(progn |(let ((x 0)) ))") ("(let ((x 0)) (progn|))" "(progn |(let ((x 0)) ))") ;; One space should definitely be left between A and B here. + ("(let ((x 0)) a(progn|)b)" "(progn |(let ((x 0)) a b))") ("(let ((x 0)) a (progn|) b)" "(progn |(let ((x 0)) a b))") ("(let ((x 0)) a (progn| ) b)" "(progn |(let ((x 0)) a b))") ("(let ((x 0)) a (progn |) b)" "(progn |(let ((x 0)) a b))"))) |