From ca6386601820bbe23a094603e560deedc07e5c69 Mon Sep 17 00:00:00 2001 From: Kinneyzhang Date: Wed, 17 Dec 2025 23:38:50 +0800 Subject: [PATCH] misc --- tp.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tp.el b/tp.el index 6bf63ad..e93b772 100644 --- a/tp.el +++ b/tp.el @@ -4,6 +4,7 @@ ;; Version: 0.1.0 ;; Keywords: convenience text-properties +;; Author: Geekinney (kinneyzhang666@gmail.com) ;; Package-Requires: ((emacs "28.1") (dash "2.19.1")) ;; This program is free software; you can redistribute it and/or @@ -1952,7 +1953,8 @@ Calling conventions: (lambda (i-start i-end top belows) (let ((current-stack (tp--layer-stack-to-list top belows))) (when (> (length current-stack) 1) - (let ((new-stack (append (cdr current-stack) (list (car current-stack))))) + (let ((new-stack (append (cdr current-stack) + (list (car current-stack))))) (set-text-properties (+ start i-start) (+ start i-end) (tp--build-layer-props new-stack)