Overview
| Comment: | Now writes out the aliased args ... |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
795b8a7cc3dbef16affdc9b32d0af038 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-10-12 19:27:20.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-10-12
| ||
| 19:27:47 | Now writes the aliased args check-in: 73efa012bf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:27:20 | Now writes out the aliased args ... check-in: 795b8a7cc3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 19:26:42 | Initial revision check-in: 5842e0e00c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/alias_args.m
from [a29d76d05e]
to [810260547d].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + + + + + + |
|
| ︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | + + - + |
for i=1:N
arg = deblank(Args(i,:));
arg_ = strrep(arg,",","__");
if struct_contains(alias,arg_)
eval(["new_arg = alias.", arg_,";"]);
mtt_info(["Replacing ", arg, "\t by ",\
new_arg, message],FileID);
mtt_save_alias(arg,sys_name);
arg = new_arg;
end
SEPS = ",+-*/()";
for j = 1:length(SEPS)
if length(findstr(arg,SEPS(j)))>0
|