summaryrefslogtreecommitdiff
path: root/paredit.el
diff options
context:
space:
mode:
Diffstat (limited to 'paredit.el')
-rw-r--r--paredit.el6
1 files 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 ?\" )