From b986346637b8ed9e1e79355a2707f42d7ace37fe Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 24 Apr 2003 01:57:46 +0000 Subject: [PATCH] (back-to-indentation): Call backward-prefix-chars. --- lisp/simple.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 4726dffecd7..ff4b83a77a8 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -369,7 +369,9 @@ useful for editing binary files." (interactive) (beginning-of-line 1) (let ((limit (line-end-position))) - (skip-syntax-forward " " limit))) + (skip-syntax-forward " " limit)) + ;; Move back over chars that have whitespace syntax but have the p flag. + (backward-prefix-chars)) (defun fixup-whitespace () "Fixup white space between objects around point. -- 2.39.2