aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/pp.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2005-06-29 13:52:29 +0000
committerJuanma Barranquero <[email protected]>2005-06-29 13:52:29 +0000
commit1bcb666b4491f54f70184ae0d55389d16e12a0f5 (patch)
tree049f8f77f58d43c56cba921c8e7b698927df0f55 /lisp/emacs-lisp/pp.el
parentc611c9dc53e0bcd5003ea8bdfca98c83b7b6ae5f (diff)
(pp-buffer): Change space constants followed by a sexp to "?\s ".
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r--lisp/emacs-lisp/pp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el
index 93e30fb0f5..d9f3df99ba 100644
--- a/lisp/emacs-lisp/pp.el
+++ b/lisp/emacs-lisp/pp.el
@@ -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)))