hello
I am trying to implement function which moves to the next blank/whitespace character. I have read manual, and it seems I can use skip-syntax functions. However, I cannot figure out how to use them correctly. Here is what I have:
(skip-syntax-forward " ")
However, this does not seem to work. If I use "^ " it works, but if point is one blank character already, points does not move forward.
What is the correct usage?