Compare commits

...

2 Commits

Author SHA1 Message Date
TorchedSammy bcfbb20685
fix: dont export lua init 2021-12-08 23:31:48 -04:00
TorchedSammy 4dadfb0874
docs(contributing): fix sentence in making pr section 2021-12-08 23:04:30 -04:00
3 changed files with 5 additions and 5 deletions

View File

@ -31,9 +31,9 @@ the README.md and PR request.
2. Say in the pull request details the changes to the shell,
this includes useful file locations and breaking changes.
3. The versioning scheme we use is [SemVer](http://semver.org/) and the
commit scheme we use is
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
3. We use [SemVer](http://semver.org/) for versioning and
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
for commit messages.
Please document any backwards incompatible changes and be sure to name
your commits correctly.

2
lua.go
View File

@ -19,7 +19,7 @@ import (
var minimalconf = `prompt '& '`
func LuaInit() {
func luaInit() {
l = lua.NewState()
l.OpenLibs()

View File

@ -139,7 +139,7 @@ func main() {
}
go handleSignals()
LuaInit()
luaInit()
runLogin()
runConfig(*configflag)