From 9ed2aafe23a544638096a86aed120a90a9523156 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:56:24 +0000 Subject: [PATCH] Address code review feedback: clarify private function comment Co-authored-by: Kinneyzhang <38454496+Kinneyzhang@users.noreply.github.com> --- tp.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tp.el b/tp.el index 8243de3..b2be22e 100644 --- a/tp.el +++ b/tp.el @@ -673,13 +673,13 @@ OBJECT defaults to current buffer." (nreverse intervals))))) (t (error "Invalid arguments to tp-get")))) -;;; Fine-grained property manipulation for nested properties (internal) +;;; Private functions for fine-grained property manipulation (defun tp--get-sub (position property sub-property &optional object) "Get SUB-PROPERTY from PROPERTY at POSITION in OBJECT. For example, get :foreground from a face property. OBJECT defaults to current buffer. -Internal function - use `tp-get' with nested path for public API." +This is a private function - use `tp-get' with nested path for public API." (let ((prop-value (get-text-property position property object))) (cond ;; Property is a plist (e.g., (:foreground \"red\" :weight bold))