[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/textmodes/paragraphs.el
From: |
Luc Teirlinck |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/textmodes/paragraphs.el |
Date: |
Wed, 29 Sep 2004 18:38:28 -0400 |
Index: emacs/lisp/textmodes/paragraphs.el
diff -c emacs/lisp/textmodes/paragraphs.el:1.73
emacs/lisp/textmodes/paragraphs.el:1.74
*** emacs/lisp/textmodes/paragraphs.el:1.73 Mon Sep 6 00:37:02 2004
--- emacs/lisp/textmodes/paragraphs.el Wed Sep 29 22:21:24 2004
***************
*** 274,281 ****
(not (looking-at parsep)))
(not (and (looking-at parstart)
(or (not use-hard-newlines)
! (get-text-property (1- start) 'hard)
! (bobp)))))
(setq found-start nil)
(goto-char start))
found-start)
--- 274,282 ----
(not (looking-at parsep)))
(not (and (looking-at parstart)
(or (not use-hard-newlines)
! (bobp)
! (get-text-property
! (1- start) 'hard)))))
(setq found-start nil)
(goto-char start))
found-start)