repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge the formfield patch from ooo-build
[ooovba.git]
/
solenv
/
bin
/
fix_shl.cmd
blob
ca13abb2074edfee54313784fbeb515ba447a7d1
1
/*
os2 build scripts
2
3
will
return
a
8.3
conformant name
for
modname.
4
5
21
/
02
/
2006
Actually this is a simple truncation
,
seems nothing more needed.
6
7
*/
8
9
parse arg modname
10
if
pos
(
'.'
,
modname
)>
0
then
modname
=
left
(
modname
,
pos
(
'.'
,
modname
)-
1
)
11
say
strip
(
left
(
modname
,
8
))