https://github.com/JuliaLang/julia
Revision da8a441137797613aee9fe47d7f66a3e25ddcff8 authored by tecosaur on 06 February 2024, 16:11:32 UTC, committed by GitHub on 06 February 2024, 16:11:32 UTC
This bundles up the following changes:

- Rejiged TermInfo struct
- Read the extended terminfo table using the same method as the
  non-extended table
- Use signed integer types for most numeric values, as per term(5)
- More robust get(::TermInfo, ...) methods
- Better match the terminfo(5) "Fetching Compiled Descriptions" behaviour
1 parent 94fd312
Raw File
Tip revision: da8a441137797613aee9fe47d7f66a3e25ddcff8 authored by tecosaur on 06 February 2024, 16:11:32 UTC
Improved terminfo parser (#51198)
Tip revision: da8a441
.gitignore
/*.tar.gz
/tmp
/dist
/dist-extras
/julia
/julia.bat
/usr
/oprofile_data
/usr-staging
/Make.user
/julia-*
/source-dist.tmp
/source-dist.tmp1

*.expmap
*.exe
*.dll
*.dwo
*.do
*.o
*.o.tmp
*.obj
*.so
*.dylib
*.dSYM
*.h.gen
*.jl.cov
*.jl.*.cov
*.jl.mem
*.jl.*.mem
*.ji

/perf*
.DS_Store
.idea/*
.vscode/*
*.heapsnapshot
.cache
# Buildkite: Ignore the entire .buildkite directory
/.buildkite

# Builtkite: json test data
/test/results.json

# Buildkite: Ignore the unencrypted repo_key
repo_key

# Buildkite: Ignore any agent keys (public or private) we have stored
agent_key*
back to top