changeset 50685:ee0efd6ecb89

(back-to-indentation): Call backward-prefix-chars.
author Richard M. Stallman <rms@gnu.org>
date Thu, 24 Apr 2003 01:57:46 +0000
parents 21af30889a41
children aa1ab04e0488
files lisp/simple.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Thu Apr 24 01:56:55 2003 +0000
+++ b/lisp/simple.el	Thu Apr 24 01:57:46 2003 +0000
@@ -369,7 +369,9 @@
   (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.