Michael Olson schrieb:
This is the first submitted version of the search-prop.el library.
Hi Michael, thanks a lot for writing this. BTW: Why not make it ready for interactive use? It may help to explore the case. While examining property stuff, I played with some little forms--may I ignored something already more convenient?-- as : (defun t-p-at () " " (interactive) (princ (text-properties-at (point) (current-buffer )))) (defun g-c-p () "get-char-property" (interactive) (message " %s" (get-char-property (point) 'face))) (defun g-t-p () "get-text-property" (interactive) (message " %s" (get-text-property (point) 'face))) (defun t-p-a () "text-properties-at " (interactive) (message " %s" (text-properties-at (point)))) __ Andreas Roehler _______________________________________________ gnu-emacs-sources mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources
