From e9ff4e4a783349c2d4a269685af1fc15649fddf3 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Mon, 31 Dec 2001 06:47:07 +0000 Subject: [PATCH] * gnus-util.el (gnus-text-with-property): The smallest point is point-min. --- lisp/ChangeLog | 3 +++ lisp/gnus-util.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 44a2b0c0e..4a6824a13 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2001-12-31 Lars Magne Ingebrigtsen + * gnus-util.el (gnus-text-with-property): The smallest point is + point-min. + * smiley-ems.el (smiley-region): Return images. (gnus-smiley-display): Allow toggling. (smiley-region): Use text properties, not overlays. diff --git a/lisp/gnus-util.el b/lisp/gnus-util.el index c9a48e011..2193f3b83 100644 --- a/lisp/gnus-util.el +++ b/lisp/gnus-util.el @@ -224,7 +224,7 @@ (defun gnus-text-with-property (prop) "Return a list of all points where the text has PROP." (let ((points nil) - (point 1)) + (point (point-min))) (save-excursion (while (< point (point-max)) (when (get-text-property point prop) -- 2.34.1