at the beginning of the buffer and hard newlines are enabled.
2004-09-29 Luc Teirlinck <teirllm@auburn.edu>
+ * textmodes/paragraphs.el (forward-paragraph): Avoid
+ args-out-of-range error when point winds up at the beginning of
+ the buffer and hard newlines are enabled.
+
* newcomment.el (comment-multi-line): Doc fix.
2004-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
(not (looking-at parsep)))
(not (and (looking-at parstart)
(or (not use-hard-newlines)
- (get-text-property (1- start) 'hard)
- (bobp)))))
+ (bobp)
+ (get-text-property
+ (1- start) 'hard)))))
(setq found-start nil)
(goto-char start))
found-start)