This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 24761e9741ae694e098778687db90431d6a0f8b4 Author: Paul King <[email protected]> AuthorDate: Sun Aug 3 13:20:33 2025 +1000 GROOVY-8162: Update Groovysh to JLine3 (additional documentation) --- .../groovy/org/apache/groovy/groovysh/jline/GroovyConsoleEngine.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/jline/GroovyConsoleEngine.groovy b/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/jline/GroovyConsoleEngine.groovy index 3b598e5d20..8e7dd3bb74 100644 --- a/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/jline/GroovyConsoleEngine.groovy +++ b/subprojects/groovy-groovysh/src/main/groovy/org/apache/groovy/groovysh/jline/GroovyConsoleEngine.groovy @@ -69,6 +69,8 @@ class GroovyConsoleEngine extends ConsoleEngineImpl { out } + // can be removed if the following PR is merged and released + // https://github.com/jline/jline3/pull/1357 private static String expandName(String name) { String regexVar = "[a-zA-Z_][a-zA-Z0-9_-]*" String out = name
