emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/paredit 2ed66de 092/224: Use `?\ ' rather than `?\s' to ap


From: ELPA Syncer
Subject: [nongnu] elpa/paredit 2ed66de 092/224: Use `?\ ' rather than `?\s' to appease GNU Emacs 21.
Date: Sat, 7 Aug 2021 09:22:26 -0400 (EDT)

branch: elpa/paredit
commit 2ed66de313e509258b3022425981294caa8570c0
Author: Taylor R Campbell <campbell@mumble.net>
Commit: Taylor R Campbell <campbell@mumble.net>

    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  ?\" )



reply via email to

[Prev in Thread] Current Thread [Next in Thread]