| View previous topic :: View next topic |
| Author |
Message |
thedlw
Joined: 24 Mar 2005 Posts: 60
|
Posted: Sat Oct 29, 2005 5:28 pm Post subject: #help blah |
|
|
| #help exit crashes tintin current version. |
|
| Back to top |
|
 |
Scandum Site Admin
Joined: 03 Dec 2004 Posts: 3274
|
Posted: Sun Oct 30, 2005 4:12 am Post subject: |
|
|
| My mistake, fixed for the next version. |
|
| Back to top |
|
 |
fog_proxy
Joined: 18 Oct 2005 Posts: 16
|
Posted: Mon Oct 31, 2005 2:44 am Post subject: |
|
|
just two places need to be changed,in help.c,function do_help(),
for (cnt = 0 ; help_table[cnt].name != 0 ; cnt++)
=>
for (cnt = 0 ; help_table[cnt].name[0] != 0 ; cnt++)
and
if (help_table[cnt].name == 0)
=>
if (help_table[cnt].name[0] == 0) |
|
| Back to top |
|
 |
|