From 78197154dfcbcd728aab23ca7893011e0c19783d Mon Sep 17 00:00:00 2001 From: Andy Dienes Date: Mon, 5 Aug 2024 22:12:11 -0400 Subject: [PATCH] add `?` suffix to show on all return paths --- src/abstractdataframe/show.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abstractdataframe/show.jl b/src/abstractdataframe/show.jl index 7f9593d4a..eec666e99 100644 --- a/src/abstractdataframe/show.jl +++ b/src/abstractdataframe/show.jl @@ -129,7 +129,7 @@ function compacttype(T::Type, maxwidth::Int) # handle the case when the type printed is not parametric but string(T) # prefixed it with the module name which caused it to be overlong - textwidth(sT) ≤ maxwidth + 1 && endswith(sTfull, sT) && return sT + textwidth(sT) ≤ maxwidth + 1 && endswith(sTfull, sT) && return sT * suffix cumwidth = 0 stop = 0