A paragraph end is the beginning of a line which is not part of the paragraph
to which the end of the previous line belongs, or the end of the buffer.
Returns the count of paragraphs left to move."
- (interactive "p")
+ (interactive "^p")
(or arg (setq arg 1))
(let* ((opoint (point))
(fill-prefix-regexp
blank line.
See `forward-paragraph' for more information."
- (interactive "p")
+ (interactive "^p")
(or arg (setq arg 1))
(forward-paragraph (- arg)))
The variable `sentence-end' is a regular expression that matches ends of
sentences. Also, every paragraph boundary terminates sentences as well."
- (interactive "p")
+ (interactive "^p")
(or arg (setq arg 1))
(let ((opoint (point))
(sentence-end (sentence-end)))
(defun backward-sentence (&optional arg)
"Move backward to start of sentence. With arg, do it arg times.
See `forward-sentence' for more information."
- (interactive "p")
+ (interactive "^p")
(or arg (setq arg 1))
(forward-sentence (- arg)))