-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathTAGS
More file actions
3496 lines (3202 loc) · 106 KB
/
TAGS
File metadata and controls
3496 lines (3202 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
settarg/Version.lua,325
function M.branch(2,11
function M.branch(branch2,11
function M.branchStr(5,52
function M.branchStr(branchStr5,52
function M.tag(12,195
function M.tag(tag12,195
function M.git(13,235
function M.git(git13,235
function M.date(19,403
function M.date(date19,403
function M.name(20,458
function M.name(name20,458
settarg/TargValue.lua,174
function M.new(45,1819
function M.new(new45,1819
function M.value(61,2119
function M.value(value61,2119
function M.display(71,2372
function M.display(display71,2372
settarg/getUname.lua,27
function getUname(66,2448
settarg/BuildTarget.lua,548
function M.default_MACH(69,2583
function M.default_MACH(default_MACH69,2583
function M.default_OS(73,2644
function M.default_OS(default_OS73,2644
function M.default_HOST(81,2834
function M.default_HOST(default_HOST81,2834
function M.default_BUILD_SCENARIO(110,3395
function M.default_BUILD_SCENARIO(default_BUILD_SCENARIO110,3395
local function l_string2Tbl(162,4950
function M.buildTbl(187,5711
function M.buildTbl(buildTbl187,5711
local function l_readDotFiles(245,7277
function M.exec(352,10487
function M.exec(exec352,10487
settarg/utils.lua,111
function argsPack(50,2045
function findFileInTree(56,2224
function STError(74,2575
function getSTT(84,2786
settarg/Bare.lua,67
function Bare.expand(43,1821
function Bare.expand(expand43,1821
settarg/BaseShell.lua,344
function M.name(56,2301
function M.name(name56,2301
function M.getMT(60,2351
function M.getMT(getMT60,2351
local function l_valid_shell(78,2722
function M.build(85,2881
function M.build(build85,2881
function M.expand(102,3289
function M.expand(expand102,3289
function M.expandSTT(112,3480
function M.expandSTT(expandSTT112,3480
settarg/ProcessModuleTable.lua,70
function extractVersion(42,1872
function processModuleTable(51,2080
settarg/ModifyPath.lua,29
function ModifyPath(38,1745
settarg/STT.lua,1042
local function l_stt_version(55,2135
local function l_new(59,2183
function M.get_targA(92,3075
function M.get_targA(get_targA92,3075
function M.add2ExtraT(96,3128
function M.add2ExtraT(add2ExtraT96,3128
function M.getBuildScenario(102,3218
function M.getBuildScenario(getBuildScenario102,3218
function M.getBuildScenarioState(110,3389
function M.getBuildScenarioState(getBuildScenarioState110,3389
function M.setBuildScenarioState(114,3467
function M.setBuildScenarioState(setBuildScenarioState114,3467
function M.getEXTRA(119,3614
function M.getEXTRA(getEXTRA119,3614
function M.removeFromExtra(130,3838
function M.removeFromExtra(removeFromExtra130,3838
function M.purgeExtraT(140,4056
function M.purgeExtraT(purgeExtraT140,4056
function M.registerVars(144,4110
function M.registerVars(registerVars144,4110
function M.clearEnv(154,4273
function M.clearEnv(clearEnv154,4273
function M.stt(165,4512
function M.stt(stt165,4512
function M.serializeTbl(175,4676
function M.serializeTbl(serializeTbl175,4676
settarg/CmdLineOptions.lua,96
local function l_new(51,2054
function M.options(60,2163
function M.options(options60,2163
settarg/bash.settarg,126
export SETTARG_CMD=7,211
dbg(14,360
opt(18,387
mdbg(22,414
gopt(26,443
chk(30,472
targ(34,499
cdt(39,532
PATH=48,753
settarg/Csh.lua,136
function Csh.expandVar(44,1880
function Csh.expandVar(expandVar44,1880
function Csh.unset(52,2056
function Csh.unset(unset52,2056
settarg/Bash.lua,140
function Bash.expandVar(42,1840
function Bash.expandVar(expandVar42,1840
function Bash.unset(61,2302
function Bash.unset(unset61,2302
settarg/settarg_cmd.in.lua,77
function cmdDir(65,2547
function optionTbl(75,2680
function main(124,4075
settarg/Output.lua,25
function Output(37,1689
init/profile.in,376
LMOD_ALLOW_ROOT_USE=7,262
export MODULEPATH_ROOT=14,457
export LMOD_sys=16,561
LMOD_MODULEPATH_INIT=20,677
export MODULEPATH=30,1059
OLD_IFS=44,1650
export MODULEPATH=47,1718
export BASH_ENV=53,1849
export MANPATH=60,2030
my_shell=89,2612
bash|zsh|sh)sh97,2804
ksh*) my_shell=98,2823
*) my_shell=99,2849
init/sh.in,43
LMOD_ROOT=3,11
clearMT(19,239
ml(31,685
init/ksh_funcs/settarg,19
settarg 7,249
init/ksh_funcs/clearLmod,20
clearLmod(6,202
init/ksh_funcs/ml,13
ml 6,202
init/ksh_funcs/module,39
module(7,252
module(12,365
init/ksh_funcs/clearMT,18
clearMT(6,202
init/zsh/_module,444
_module(4,35
_module_command(42,2898
_module_loaded_modules(101,4842
_module_available_modules(107,5044
_module_spider_list(115,5296
_module_restore(120,5397
_module_disable(126,5534
_ml_mcc(132,5671
_ml_describe(138,5800
_module_help(145,5965
_module_load(152,6088
_module_spider(159,6209
_module_unload(166,6323
_module_swap(173,6445
_module_show(187,6738
_module_use(197,6914
_module_unuse(205,7094
_module_whatis(211,7186
init/zsh/_ml,396
_ml(4,31
_ml_loaded_modules_negated(170,5895
_ml_loaded_modules(175,6082
_ml_available_modules(183,6283
_ml_spider_list(191,6532
_ml_unload(197,6630
_ml_restore(203,6706
_ml_mcc(209,6839
_ml_describe(215,6968
_ml_disable(221,7102
_ml_help(227,7235
_ml_swap(233,7315
_ml_show(245,7558
_ml_load(252,7669
_ml_use(259,7779
_ml_unuse(267,7955
_ml_whatis(273,8043
_ml_spider(279,8125
init/R,23
args <- paste(6,130
init/nushell.in,33
def --env lmod-eval eval11,281
init/fish/module.fish,261
function __fish_lmod_commands5,51
function __fish_lmod_av26,543
function __fish_lmod_list30,637
function __fish_lmod_savelist39,844
function _get_commandline_list48,1062
function __fish_lmod_needs_command53,1167
function __fish_lmod_using_command64,1374
init/bash.in,453
*v*x*) __lmod_vx=10,259
*v*) __lmod_vx=11,289
*x*) __lmod_vx=12,319
esac;13,349
__uid=24,708
__stat_flag=28,793
__zsh_fpath=34,1082
export FPATH=36,1143
export LMOD_ROOT=41,1315
module(86,2983
module(93,3190
LMOD_VERSION=127,4233
settarg 131,4329
ml(147,4810
clearMT(162,5156
clearLmod(167,5227
xSetTitleLmod(173,5326
set -$__lmod_vx;$__lmod_vx189,5800
unset __lmod_vx;190,5819
fi;191,5838
init/cshrc.in,19
set MY_NAME=9,249
init/env_modules_python.py.in,70
from subprocess import PIPE,3,55
import os,4,90
numArgs 27,810
init/rc.in,15
LMOD_PKG=4,44
init/lmod_bash_completions,327
_module_avail(1,0
_module_dir(8,255
_module_spider(66,1950
_module_loaded_modules(70,2041
_module_savelist(74,2199
_module_disable(78,2294
_module_loaded_modules_negated(82,2388
_module_mcc(86,2563
_module_describe(90,2653
_module_not_yet_loaded(94,2748
_module_long_arg_list(98,2844
_module(118,3381
_ml(186,5441
init/cmake,288
function(73,3534
else(89,4038
endif(91,4086
file(113,4619
endif(119,4810
endif(122,4914
list(136,5282
list(138,5350
endfunction(142,5459
endfunction(147,5612
foreach(160,5940
list(170,6272
else(172,6366
endif(174,6414
endfunction(178,6487
init/lisp,679
;; call-process on Emacs cannot write stderr to a separate buffer35,1322
;; so it must go to a file and then get pulled into the log buffer36,1400
;; Run any setenv, etc commands produced by Lmod55,2291
;; cmd-buffer should currently contain the pathname of file to run56,2350
;; Note: use eval-buffer instead of load-file to avoid stomping57,2427
;; replace cmd-buffer w/ contents of file whose name is in cmd-bufferbuffer62,2648
;; and run it carefully. If an error is thrown, catch it and64,2838
;; propagate the fact upwards as a nil, but be sure to still65,2916
init/fish.in,71
function module14,298
function module18,372
function ml23,460
debian/gbp.conf,23
pristine-tar=tar2,10
debian/lmod.substvars,26
misc:Depends=Depends1,0
debian/changelog,2045
lmod (8.7.34) unstable;1,0
lmod (8.7.34) unstable; urgency=1,0
lmod (8.7.32) unstable; urgency=8,152
lmod (8.7.31) unstable; urgency=15,304
lmod (8.7.30) unstable; urgency=22,456
lmod (8.7.29) unstable; urgency=29,608
lmod (8.7.28) unstable; urgency=36,760
lmod (8.7.27) unstable; urgency=43,912
lmod (8.7.25) unstable; urgency=50,1064
lmod (8.7.24) unstable; urgency=57,1216
lmod (8.7.23) unstable; urgency=64,1368
lmod (8.7.22) unstable; urgency=71,1520
lmod (8.7.21) unstable; urgency=78,1672
lmod (8.7.20) unstable; urgency=85,1824
lmod (8.7.19) unstable; urgency=92,1976
lmod (8.7.18) unstable; urgency=99,2128
lmod (8.7.17) unstable; urgency=106,2280
lmod (8.7.15) unstable; urgency=113,2432
lmod (8.7.14) unstable; urgency=120,2584
lmod (8.7.13) unstable; urgency=127,2736
lmod (8.7.12) unstable; urgency=134,2888
lmod (8.7.11) unstable; urgency=141,3040
lmod (8.7.8) unstable; urgency=148,3192
lmod (8.7.7) unstable; urgency=155,3342
lmod (8.7.6) unstable; urgency=162,3492
lmod (8.7.5) unstable; urgency=169,3642
lmod (8.7.4) unstable; urgency=176,3792
lmod (8.7.3) unstable; urgency=183,3942
lmod (8.7.2) unstable; urgency=190,4092
lmod (8.7) unstable; urgency=197,4242
lmod (8.6.17) unstable; urgency=204,4388
lmod (8.6.15) unstable; urgency=211,4540
lmod (8.6.14) unstable; urgency=218,4692
lmod (8.6.12) unstable; urgency=225,4844
lmod (8.6.9) unstable; urgency=232,4996
lmod (8.6.8) unstable; urgency=239,5146
lmod (8.6.7) unstable; urgency=246,5296
lmod (8.6.6) unstable; urgency=253,5446
lmod (8.6.5) unstable; urgency=260,5596
lmod (8.6.4) unstable; urgency=267,5746
lmod (8.6.3) unstable; urgency=274,5896
lmod (8.6.2) unstable; urgency=281,6046
lmod (8.6.1) unstable; urgency=288,6196
lmod (8.5.25) unstable; urgency=295,6346
lmod (6.6-0.3) unstable; urgency=302,6513
lmod (6.6-0.2) unstable; urgency=310,6776
lmod (6.6-0.1) unstable; urgency=317,6981
lmod (5.8-1) unstable; urgency=335,7681
lmod (5.6.2-1) unstable; urgency=345,7992
lmod (5.5.1-1) unstable; urgency=354,8234
debian/control,39
Build-Depends: autotools-dev,dev5,97
debian/rules,12
TDIR=7,103
debian/patches/set_modulespath,45
export LMOD_FULL_SETTARG_SUPPORT=9,215
debian/patches/change_paths,32
prefix 4,56
-PKGV PKGV7,211
README.design.md,16
Lmod design1,0
docker/Dockerfile,323
RUN mkdir /tmp/git-repo;repo44,927
RUN mkdir /tmp/git-repo; cd /tmp/git-repo repo44,927
cd Lmod 46,1025
git fetch --tags;tags47,1041
git checkout origin/debian debian docker 49,1099
cd Lmod 50,1148
cd Lmod ; debuild -b -uc -us;us50,1148
cd .. ; dpkg -i ./lmod_8.7.34_all.deb deb51,1184
docker/build.sh,29
VERSION=12,227
lmod 24,593
sh_src/print_os.sh.in,55
result=6,95
result=18,353
result=24,469
pkgs/Makefile,39
install:install1,0
clean:clean4,36
pkgs/tcl2lua/Makefile,330
SONAME 1,0
SONAMEV 2,23
LIBRARY 3,47
SRC 4,74
OBJ 5,96
OS 6,137
LIB_OPTION 10,189
LIB_OPTION 12,257
override CFLAGS override CFLAGS14,321
all:all16,411
$(SONAMEV)$(SONAMEV18,450
$(SONAME)$(SONAME21,484
$(LIBRARY)$(LIBRARY24,517
install:install27,624
clean:clean33,794
neat:neat35,845
echo:echo38,866
pkgs/tcl2lua/tcl2lua.c,335
#define MYNAME 8,134
#define MYVERSION 9,166
typedef int Tcl_Size;12,232
typedef struct _results 17,266
char* resultStr;18,292
int rlen;19,313
} results_t;20,329
#define TclNewLiteralStringObj(26,479
int setResultsObjCmd(29,609
int Tcl_AppInit(59,1348
static int runTCLprog(66,1465
int luaopen_tcl2lua(185,4460
pkgs/term/Makefile,432
SONAME 1,0
SONAMEV 2,20
LIBRARY 3,44
SRC 4,71
OBJ 5,90
override CFLAGS override CFLAGS7,132
override CFLAGS override CFLAGS10,189
OS 13,239
LIB_OPTION=15,283
LIB_OPTION=17,349
all:all20,412
$(SONAMEV)$(SONAMEV22,451
$(SONAME)$(SONAME25,485
$(LIBRARY)$(LIBRARY28,518
install:install31,605
$(LIB)/term $(SHARE)/term:$(LIB)/term $(SHARE)/term35,732
clean:clean39,774
neat:neat41,825
echo:echo44,846
pkgs/term/core.c,43
lua_isatty(7,90
luaopen_term_core(16,250
pkgs/term/term/colors.lua,273
function colormt:__tostring(30,1272
function colormt:__tostring(__tostring30,1272
function colormt:__concat(34,1329
function colormt:__concat(__concat34,1329
function colormt:__call(38,1412
function colormt:__call(__call38,1412
local function l_makecolor(44,1507
pkgs/luafilesystem/lfs.c,3492
#define _FILE_OFFSET_BITS 26,674
#define _LARGE_FILES 28,743
#define _WIN32_WINNT 34,821
#define _LARGEFILE64_SOURCE38,890
#define LFS_MAXPATHLEN 64,1315
#define LFS_MAXPATHLEN 76,1528
#define LFS_MAXPATHLEN 79,1626
#define LFS_VERSION 90,1758
#define LFS_LIBNAME 91,1786
#define luaL_optlong 96,1882
#define new_lib(102,1962
#define new_lib(104,2010
#define strerror(109,2165
#define DIR_METATABLE 112,2235
typedef struct dir_data 113,2279
int closed;114,2305
intptr_t hFile;116,2333
char pattern[pattern117,2351
DIR *dir;dir119,2387
} dir_data;121,2406
#define LOCK_METATABLE 123,2419
#define lfs_setmode(128,2495
#define STAT_STRUCT 129,2554
#define lfs_setmode(131,2595
#define STAT_STRUCT 132,2655
#define _S_IFLNK 136,2716
#define S_ISDIR(140,2763
#define S_ISREG(143,2825
#define S_ISLNK(146,2887
#define S_ISSOCK(149,2950
#define S_ISFIFO(152,3002
#define S_ISCHR(155,3053
#define S_ISBLK(158,3115
#define STAT_FUNC 161,3150
#define LSTAT_FUNC 162,3177
#define _O_TEXT 166,3220
#define _O_BINARY 167,3252
#define lfs_setmode(168,3284
#define STAT_STRUCT 169,3340
#define STAT_FUNC 170,3372
#define LSTAT_FUNC 171,3395
#define lfs_mkdir 176,3443
#define lfs_mkdir(178,3474
int lfs_win32_pusherror(184,3622
#define TICKS_PER_SECOND 195,3869
#define EPOCH_DIFFERENCE 196,3903
time_t windowsToUnixTime(197,3942
int lfs_win32_lstat(205,4149
static int pusherror(234,4940
static int pushresult(245,5182
static int change_dir(259,5421
static int get_dir(278,5883
static FILE *check_file(check_file318,6922
static int _file_lock(343,7500
typedef struct lfs_Lock 413,9294
HANDLE fd;414,9320
} lfs_Lock;415,9333
static int lfs_lock_dir(416,9345
static int lfs_unlock_dir(445,10113
typedef struct lfs_Lock 455,10357
char *ln;ln456,10383
} lfs_Lock;457,10395
static int lfs_lock_dir(458,10407
static int lfs_unlock_dir(486,11065
static int lfs_g_setmode(498,11286
static int lfs_f_setmode(520,11846
static int file_lock(532,12149
static int file_unlock(555,12712
static int make_link(577,13222
static int make_dir(619,14343
static int remove_dir(630,14535
static int dir_iter(640,14694
static int dir_close(688,15786
static int dir_iter_factory(708,16093
static int dir_create_meta(741,16803
static int lock_create_meta(768,17333
static const char *mode2string(mode2string789,17742
static int file_utime(820,18456
static void push_st_mode(838,18871
static void push_st_dev(844,19015
static void push_st_ino(850,19150
static void push_st_nlink(856,19303
static void push_st_uid(862,19444
static void push_st_gid(868,19582
static void push_st_rdev(874,19738
static void push_st_atime(880,19880
static void push_st_mtime(886,20035
static void push_st_ctime(892,20191
static void push_st_size(898,20335
static void push_st_blocks(905,20498
static void push_st_blksize(911,20658
static const char *perm2string(perm2string922,20872
static const char *perm2string(perm2string946,21312
static void push_st_perm(975,21880
typedef void (*_push_function)_push_function980,21994
struct _stat_members 982,22062
const char *name;name983,22085
_push_function push;984,22105
struct _stat_members members[members987,22132
static int _file_info_(1010,22675
static int file_info(1054,23820
static int push_link_target(1066,24133
static int link_info(1121,25508
static void set_info(1142,25987
static const struct luaL_Reg fslib[fslib1156,26482
LFS_EXPORT int luaopen_lfs(1173,26923
pkgs/luafilesystem/lfs.def,27
LIBRARY 1,0
VERSION 2,17
pkgs/luafilesystem/Makefile,359
T 1,0
SONAME 2,16
SONAMEV 3,36
LIBRARY 4,60
SRC 5,87
OBJ 6,106
OS 7,147
LIB_OPTION 10,198
LIB_OPTION 12,266
override CFLAGS override CFLAGS15,331
all:all18,380
$(SONAMEV)$(SONAMEV20,419
$(SONAME)$(SONAME23,453
$(LIBRARY)$(LIBRARY26,486
install:install29,573
$(LIB)$(LIB32,629
clean:clean35,655
neat:neat37,706
echo:echo40,727
pkgs/luafilesystem/lfs.h,220
#define chdir(9,188
#define chdir_error 10,210
#define chdir_error 12,278
#define chdir(16,336
#define getcwd(17,365
#define rmdir(18,402
#define LFS_EXPORT 19,431
#define fileno(21,488
#define LFS_EXPORT24,532
bugReport/bug_report_template.sh,24
export MODULEPATH=7,66
README.old,87
(PROMPT_COMMAND=precmd for bash). Now use LMOD_SETTARG_FUNCTIONS=8,450
proj_mgmt/clean_gold_files/regularize,22
function main(39,919
proj_mgmt/clean_gold_files/try.sh,18
export gitV=4,36
proj_mgmt/clean_gold_files/Cleanup.lua,810
local function l_init_envTable(61,2107
local function l_remove(151,5781
local function l_replacement(161,5967
local function l_add_mark_bash(178,6295
local function l_remove_mark_bash(185,6494
local function l_patt_bash(191,6694
local function l_add_mark_csh(201,6931
local function l_remove_mark_csh(208,7143
local function l_add_mark_fish(218,7438
local function l_remove_mark_fish(224,7610
local function l_patt_fish(231,7788
local function l_isPath_fish(238,7952
local function l_add_mark_nushell(254,8380
local function l_remove_mark_nushell(260,8587
local function l_patt_nushell(266,8799
local function l_isPath_common(273,8959
local function l_remove_paths(278,9040
function M.new(299,9985
function M.new(new299,9985
function M.filter(313,10403
function M.filter(filter313,10403
proj_mgmt/joinBase64Results,573
local function l_argsPack(64,2447
local function l_grab(83,3043
local function l_grabCsh(89,3200
local function l_grabFish(97,3346
local function l_grabNushell(105,3493
function fixB64(117,3722
function sectionEnd(160,4840
function joinArrays(187,5590
function joinB64_fish(197,5762
function joinB64_nushell(224,6393
function joinB64_bash(255,7234
function joinB64_csh(290,8145
local function l_stackVar_common(317,8770
local function l_stackVar_fish(331,9076
local function l_stackVar_nushell(345,9380
function lmod_stack(367,9849
function main(389,10543
proj_mgmt/epoch.in.lua,54
function build_epoch(89,3206
function main(112,3795
proj_mgmt/buildVersion_src,76
function mTbl(6,51
function buildVersionCode(10,89
function main(49,1434
proj_mgmt/updateVersion,101
function optionTbl(17,337
function main(21,385
function options(82,1729
function isFile(122,2750
proj_mgmt/convert_mode.sh,103
KIND=4,34
uid=8,87
UID_MIN=12,176
xx=18,266
UID_MIN=20,368
umask=24,435
proj_mgmt/find_tcl_pc.sh,77
realpath(4,78
OS=18,373
TCL_PC_LOC=32,739
TCL_PKG_CONFIG_DIR=35,782
proj_mgmt/getLFSVersion,51
function string.string3,34
function main(16,427
proj_mgmt/luaModuleAvailable,19
function main(1,0
proj_mgmt/ignore_dirs_converter,256
function string:trim(41,1850
function string:trim(trim41,1850
function string:split(53,2177
function string:split(split53,2177
local function l_getter(56,2276
local function l_splitter(60,2438
function wrapper(70,2677
function main(76,2872
proj_mgmt/build_hide_cmd,50
function build_tStr(13,159
function main(21,419
proj_mgmt/demoIrreversible.lua,1016
function argsPack(11,185
function mode(27,707
function purgeFlg(35,811
local function l_modeCk(50,1142
local function l_priorityCk(70,1725
local function l_delimCk(82,2145
local function l_validateModules(101,2662
local function l_validateArgs(125,3332
local function l_validateTblArgs(141,3846
local function l_stringCk(150,4136
local function l_booleanCk(154,4219
local function l_stringValueCk(158,4305
local function l_trim_first_arg(168,4579
local function l_trim_all_strings_args(172,4650
local function l_check_argT(232,6255
local function l_chose_mcp(263,7154
local function l_build_argTable(295,7881
local function l_build_check_argT(324,8805
function setenv(338,9358
function pushenv(349,9592
function prepend_path(360,9832
function append_path(371,10097
function load_module(382,10357
function mcp_setenv(397,10736
function mcp_pushenv(403,10870
function mcp_prepend_path(409,11006
function mcp_append_path(415,11140
function mcp_load_module(421,11272
function main(430,11500
proj_mgmt/DATE_cmd.sh,43
arg=4,34
my_cmd=10,149
arg=18,262
proj_mgmt/markedDefault.lua,186
local function l_marked_default(12,208
local function l_marked_default_helper(20,366
local function l_find_all_sn(39,924
function find_all_versions(78,1590
function main(95,2012
proj_mgmt/jsonLoadConversion,23
function main(68,1754
build.rtm,440
PKG_VERSION=3,35
save_old_version(31,909
make_symlink(42,1221
runMe(52,1527
BUILD_TYPE=82,2012
BUILD_TYPE=84,2059
myhost=93,2228
first=94,2252
SYSHOST=95,2272
SUDO=96,2293
MY_ARCH=99,2340
MAKE_EXTRA=111,2564
EXTRA=131,3267
SUDO=136,3386
base=147,3742
UPDATE_FN=152,3912
base=160,4155
base=162,4220
ADMIN_DIR=174,4548
BASE_DIR=182,4798
EXTRA_CMD=185,4842
MAKE=196,5021
Makefile.in,5413
srcdir 1,0
prefix 2,38
SYS_LUA_PATH 3,76
SYS_LUA_CPATH 4,120
package 5,165
PATH_TO_SRC 7,238
PATH_TO_LUA 9,275
version 10,318
SITE_CONTROLLED_PREFIX 11,460
LMOD_ROOT 12,514
MY_PACKAGE 13,564
MY_PKG_PACKAGE 14,625
LMOD_CONFIG_DIR 15,686
LMOD_ROOT 18,771
MY_PACKAGE 19,813
MY_PKG_PACKAGE 20,852
CC 22,897
PATH_TO_SRC 23,931
path_to_src 24,974
TOOL_SRC 27,1017
I18N_SRC 28,1080
CONF_PY 30,1149
CONF_PY_PATTERN 31,1208
CURRENT_MK 32,1285
export IGNORE_DIRS export IGNORE_DIRS33,1343
REDIRECT 34,1452
LMOD_SETTARG_FULL_SUPPORT 35,1492
USE_DOT_FILES 36,1582
PREPEND_BLOCK 37,1672
COLORIZE 38,1762
SETTARG_CMD 39,1852
MODULEPATH_INIT 40,1893
LMOD_TERSE_DECORATIONS 41,1940
LMOD_AVAIL_EXTENSIONS 42,1989
LMOD_HIDDEN_ITALIC 43,2037
LMOD_OVERRIDE_LANG 44,2082
LMOD_ALLOW_ROOT_USE 45,2132
LMOD_USE_DOT_CONFIG_ONLY 46,2183
SITE_MSG_FILE 47,2238
SITE_NAME 48,2283
SUPPORT_KSH 49,2324
SYSHOST 50,2367
DYNAMIC_SPIDER_CACHE 51,2406
SILENCE_SHELL_DEBUGGING 52,2458
SYS_LD_LIB_PATH 53,2513
SYS_LD_PRELOAD 54,2560
CASE_INDEPENDENT_SORTING 55,2606
ZSH_SITE_FUNCTIONS_DIRS 56,2662
SPIDER_CACHE_DESCRIPT_FN 57,2717
ANCIENT 58,2773
ALLOW_TCL_MFILES 59,2812
MPATH_AVAIL 60,2860
EXTENDED_DEFAULT 61,2903
TMOD_PATH_RULE 62,2951
TMOD_FIND_FIRST 63,2997
CACHED_LOADS 64,3044
EXACT_MATCH 65,3088
DUPLICATE_PATHS 66,3131
DISABLE_NAME_AUTOSWAP 67,3178
SHORT_TIME 68,3231
PIN_VERSIONS 69,3273
AUTO_SWAP 70,3317
SPIDER_CACHE_DIRS 71,3358
LEGACY_ORDERING 72,3407
EXPORT_MODULE 73,3454
LMOD_DOWNSTREAM_CONFLICTS 74,3499
MODULES_AUTO_HANDLING 75,3556
BASENAME 76,3609
UPDATE_VERSION 77,3649
BUILD_V_src 78,3776
PS 79,3935
READLINK 80,3969
EXPR 81,4009
MODULES_AUTO_HANDLING 82,4045
PATH_TO_POD2MAN 83,4098
PATH_TO_HASHSUM 84,4145
PATH_TO_LUAC 85,4192
PATH_TO_PAGER 86,4236
PATH_TO_TCLSH 87,4281
PATH_TO_LS 88,4326
MODULEPATH_ROOT 89,4368
VDateFn 90,4415
VERSION_SRC 91,4467
SETTARG_VSRC 92,4522
LUA_INCLUDE 93,4581
UPDATE_SYSTEM_FN 94,4624
GIT_PROG 95,4672
PKG 96,4715
PKGV 97,4762
LIB 98,4805
LIBEXEC 99,4852
SHELLS 100,4903
TOOLS 101,4953
I18N 102,5002
SETTARG 103,5056
INIT 104,5107
INIT_KSH_FUNCS 105,5155
FISH_TAB 106,5213
MESSAGEDIR 107,5281
LMOD_MF 108,5335
MAN_PAGES_CAT 109,5395
MAN_PAGES 110,5453
LMOD_MF_SOURCE 111,5511
SETTARG_SOURCE 112,5585
DATE_cmd 113,5673
UNAME_S 114,5734
VersionDate 115,5781
MODE 116,5834
MODE_X 118,5871
MODE_R 119,5937
LUA_INCLUDE 123,6030
LUA_INCLUDE 125,6053
GIT_VERSION 128,6117
GIT_BRANCH 132,6310
DIRLIST 136,6531
STANDALONE_PRGM 142,7017
STANDALONE_PRGM 150,7671
SHELL_INIT 151,7747
SHELL_INIT 154,7995
LMODRC_INIT 155,8071
ZSH_FUNCS 158,8146
ZSH_FUNCS 159,8187
FISH_FUNCS 161,8267
FISH_FUNCS 162,8311
KSH_FUNCS 164,8393
KSH_FUNCS 165,8458
STARTUP 167,8544
STARTUP 168,8623
MSGFNs 170,8697
MAIN_DIR 172,8766
CONTRIB_DIRS 175,8910
CONTRIB 188,9652
lua_code 189,9733
lua_code 190,9818
CurDATE 191,9932
ComputeHashSum 193,9999
spiderCacheSupportCMD 194,10064
export L_PATH export L_PATH195,10148
export L_CPATH export L_CPATH196,10190
HAVE_LUA_TERM 198,10234
PKGS 200,10308
HAVE_LUAFILESYSTEM 202,10329
PKGS 204,10413
PKG_LFS 205,10435
FAST_TCL_INTERP 207,10458
TCL_INCLUDE 208,10505
TCL_LIBS 209,10541
PKGS 211,10604
PKG_T2L 212,10633
.PHONY:.PHONY215,10661
all:all217,10690
uninstall:uninstall220,10708
pre-install:pre-install224,10830
lmod_install_targets:lmod_install_targets226,10876
install:install231,11167
echo:echo246,12112
man_pages:man_pages251,12225
LUA_PATH=254,12415
LUA_PATH=259,12753
$(DIRLIST)$(DIRLIST266,13144
__installMe:__installMe269,13186
generate_doc:generate_doc357,19942
shell_init:shell_init360,19965
lmodrc_init:lmodrc_init363,20079
messageFns:messageFns366,20197
i18n:i18n369,20313
startup:startup372,20419
other_tools:other_tools375,20529
spiderCacheSupport:spiderCacheSupport378,20670
src/computeHashSum:src/computeHashSum385,21068
tcl2lua:tcl2lua389,21213
$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC=$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC391,21292
LIB=393,21439
SHARE=394,21516
lfs:lfs398,21682
$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC=$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC400,21757
LIB=401,21834
MODE_R=402,21911
pkgs:pkgs405,22076
$(MAKE) -C $(srcdir)/pkgs LUA_INC=$(MAKE) -C $(srcdir)/pkgs LUA_INC407,22152
LIB=408,22229
MODE_R=409,22306
zsh_tab_funcs:zsh_tab_funcs413,22472
ksh_funcs:ksh_funcs428,23377
fish_tab_funcs:fish_tab_funcs431,23499
makefile:makefile434,23589
config.status:config.status437,23658
trailing_blanks_removed:trailing_blanks_removed440,23701
dist:dist444,23966
ml_dist:ml_dist464,25387
_ml_dist:_ml_dist467,25426
test:test476,25872
tags:tags479,25910
build_tags:build_tags482,25947
busted:busted546,29578
luachk:luachk553,29933
libexec:libexec557,30092
VersionSrc:VersionSrc560,30205
STVersionSrc:STVersionSrc563,30347
Inst_Tools:Inst_Tools566,30503
Inst_Shells:Inst_Shells569,30616
Inst_Settarg:Inst_Settarg572,30742
Inst_Lmod_MF:Inst_Lmod_MF576,30866
clean:clean579,30989
clobber:clobber585,31233
distclean:distclean587,31249
world_update:world_update590,31299
gittag:gittag616,33241
.luacheckrc,290