branch: elpa/paredit
commit 2ed66de313e509258b3022425981294caa8570c0
Author: Taylor R Campbell <[email protected]>
Commit: Taylor R Campbell <[email protected]>
Use `?\ ' rather than `?\s' to appease GNU Emacs 21.
Ignore-this: efc4abdd6f8e015ae35c51dea4358a1e
darcs-hash:20110322203605-00fcc-a82f3ae4e936b16d682cbb26279dfa1d59c4dd33
---
paredit.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/paredit.el b/paredit.el
index 88ea5b8..d86bf25 100644
--- a/paredit.el
+++ b/paredit.el
@@ -2350,9 +2350,9 @@ Both must be lists, strings, or atoms; error if there is
a mismatch."
(backward-delete-char 1)
;; Heuristic kludge: (foo)(bar) => (foo bar).
(if (and (= left-point right-point)
- (not (or (eq ?\s (char-syntax (char-before)))
- (eq ?\s (char-syntax (char-after))))))
- (insert ?\s))
+ (not (or (eq ?\ (char-syntax (char-before)))
+ (eq ?\ (char-syntax (char-after))))))
+ (insert ?\ ))
(backward-up-list)
(indent-sexp))
((and (eq left-syntax ?\" )