mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-19 18:13:55 +00:00
(pp-buffer): Change space constants followed by a sexp to "?\s ".
This commit is contained in:
parent
c611c9dc53
commit
1bcb666b44
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user