diff options
author | Taylor R Campbell <campbell@mumble.net> | 2011-03-22 20:36:05 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2011-03-22 20:36:05 +0000 |
commit | 2ed66de313e509258b3022425981294caa8570c0 (patch) | |
tree | d0f39c659b30fdfef903d1057f84d30ee71cc8b7 /paredit.el | |
parent | 980a4f4bcc258da09d8519ee6077b88bd5ecdcc4 (diff) |
Use `?\ ' rather than `?\s' to appease GNU Emacs 21.
Ignore-this: efc4abdd6f8e015ae35c51dea4358a1e
darcs-hash:20110322203605-00fcc-a82f3ae4e936b16d682cbb26279dfa1d59c4dd33
Diffstat (limited to 'paredit.el')
-rw-r--r-- | paredit.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ?\" ) |