repo.or.cz
/
lisp-parkour.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move aux functions out of the constructor
[lisp-parkour.git]
/
fmt
/
lisp
/
init.lua
blob
443817cedd13b06c00b373be71ea0e68871137f4
1
local
M
= {}
2
3
local
super
= (...):
match
'(.-)%.[^%.]+$'
4
local
code
=
require
(
super
..
'.common'
)
5
6
for
name
,
func
in
pairs
(
code
)
do
7
M
[
name
] =
func
8
end
9
10
M
.
lispwords
=
require
((...)..
'.lispwords'
)
11
12
return
M