From: Lars Magne Ingebrigtsen Date: Wed, 13 Oct 2010 22:13:07 +0000 (+0200) Subject: * shr.el (shr-find-fill-point): Don't inloop on indented text. X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=043d16dfd37a5c292b4bc44bdba7ad699026c0fe * shr.el (shr-find-fill-point): Don't inloop on indented text. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 65d2bb00f..c19ea93be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-10-13 Lars Magne Ingebrigtsen + * shr.el (shr-find-fill-point): Don't inloop on indented text. + * tls.el (tls-program): Remove spurious %s from openssl. * nnimap.el (nnimap-open-connection): Fix open-tls-stream call. diff --git a/lisp/shr.el b/lisp/shr.el index 1cdd6a71f..119fd97ed 100644 --- a/lisp/shr.el +++ b/lisp/shr.el @@ -235,7 +235,7 @@ redirects somewhere else." (defun shr-find-fill-point () (let ((found nil)) (while (and (not found) - (not (bolp))) + (> (current-column) shr-indentation)) (when (and (or (eq (preceding-char) ? ) (aref fill-find-break-point-function-table (preceding-char)))