From b8e25be68841a6f637d0a31afdf77186c4e848c7 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Wed, 28 Feb 2024 17:58:02 +0100 Subject: [PATCH] ; Autoload text property search functions --- lisp/emacs-lisp/text-property-search.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/emacs-lisp/text-property-search.el b/lisp/emacs-lisp/text-property-search.el index f05219f839b..3c9a30181aa 100644 --- a/lisp/emacs-lisp/text-property-search.el +++ b/lisp/emacs-lisp/text-property-search.el @@ -29,6 +29,7 @@ (cl-defstruct (prop-match) beginning end value) +;;;###autoload (defun text-property-search-forward (property &optional value predicate not-current) "Search for next region of text where PREDICATE returns non-nil for PROPERTY. @@ -133,6 +134,7 @@ for the value of PROPERTY in the region." :value (get-text-property start property)))) +;;;###autoload (defun text-property-search-backward (property &optional value predicate not-current) "Search for previous region of text where PREDICATE returns non-nil for PROPERTY. -- 2.39.5