From: Juanma Barranquero Date: Wed, 29 Jun 2005 13:52:29 +0000 (+0000) Subject: (pp-buffer): Change space constants followed by a sexp to "?\s ". X-Git-Tag: emacs-pretest-22.0.90~8568 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1bcb666b4491f54f70184ae0d55389d16e12a0f5;p=emacs.git (pp-buffer): Change space constants followed by a sexp to "?\s ". --- diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index 93e30fb0f55..d9f3df99bae 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)))