branch: externals/tmr commit f48af7b5ff544958c658637f3e5f9d4530397186 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Use 'format' instead of 'concat' --- tmr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmr.el b/tmr.el index 38559562ae..64c6157f80 100644 --- a/tmr.el +++ b/tmr.el @@ -165,7 +165,7 @@ Optionally include DESCRIPTION." (propertize start 'face 'success) (propertize unit 'face 'error) (if description - (concat " [" (propertize description 'face 'bold) "]") + (format " [%s]" (propertize description 'face 'bold)) "")))) (defvar tmr--description-hist '()