(back-to-indentation): Skip all whitespace except for newlines.
This commit is contained in:
parent
7906c044c1
commit
0ea364e605
1 changed files with 2 additions and 1 deletions
|
@ -368,7 +368,8 @@ useful for editing binary files."
|
|||
"Move point to the first non-whitespace character on this line."
|
||||
(interactive)
|
||||
(beginning-of-line 1)
|
||||
(skip-chars-forward " \t"))
|
||||
(let ((limit (line-end-position)))
|
||||
(skip-syntax-forward " " limit)))
|
||||
|
||||
(defun fixup-whitespace ()
|
||||
"Fixup white space between objects around point.
|
||||
|
|
Loading…
Add table
Reference in a new issue