diff options
| author | Richard M. Stallman | 2003-04-24 01:57:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-04-24 01:57:46 +0000 |
| commit | b986346637b8ed9e1e79355a2707f42d7ace37fe (patch) | |
| tree | 923e5d17990dffe0a86e3aeff13499ec828c5995 | |
| parent | ad4888e42d508a3c8afd338d49ef1e8508f1e1ba (diff) | |
| download | emacs-b986346637b8ed9e1e79355a2707f42d7ace37fe.tar.gz emacs-b986346637b8ed9e1e79355a2707f42d7ace37fe.zip | |
(back-to-indentation): Call backward-prefix-chars.
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 3 insertions, 1 deletions
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." | |||
| 369 | (interactive) | 369 | (interactive) |
| 370 | (beginning-of-line 1) | 370 | (beginning-of-line 1) |
| 371 | (let ((limit (line-end-position))) | 371 | (let ((limit (line-end-position))) |
| 372 | (skip-syntax-forward " " limit))) | 372 | (skip-syntax-forward " " limit)) |
| 373 | ;; Move back over chars that have whitespace syntax but have the p flag. | ||
| 374 | (backward-prefix-chars)) | ||
| 373 | 375 | ||
| 374 | (defun fixup-whitespace () | 376 | (defun fixup-whitespace () |
| 375 | "Fixup white space between objects around point. | 377 | "Fixup white space between objects around point. |