]> git.eshelyaron.com Git - emacs.git/commitdiff
(pp-buffer): Change space constants followed by a sexp to "?\s ".
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jun 2005 13:52:29 +0000 (13:52 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jun 2005 13:52:29 +0000 (13:52 +0000)
lisp/emacs-lisp/pp.el

index 93e30fb0f556415629f22a3289ec370abef79deb..d9f3df99bae024e7f7c3bd278e7ebc9e5fce4880 100644 (file)
@@ -67,7 +67,7 @@ to make output that `read' can handle, whenever this is possible."
       (save-excursion
         (backward-char 1)
         (skip-chars-backward "'`#^")
-        (when (and (not (bobp)) (memq (char-before) '(?\ ?\t ?\n)))
+        (when (and (not (bobp)) (memq (char-before) '(?\s ?\t ?\n)))
           (delete-region
            (point)
            (progn (skip-chars-backward " \t\n") (point)))