Removed oedit delete option. --Rumble

This commit is contained in:
Rumble 2010-02-13 04:11:14 +00:00
parent 7af7f1d8fa
commit 47cf664310
4 changed files with 6 additions and 7 deletions

View file

@ -101,7 +101,7 @@ programmers, it takes a while to
with the way it works to start modifying it. Hopefully, by reading this manual,
your breaking-in period for getting to know tbaMUD will be minimized.
tbaMUD consists of about 30,000 lines of moderately dense C code, so you shouldnt
tbaMUD consists of about 50,000 lines of moderately dense C code, so you shouldnt
expect familiarity to come overnight. The best way to learn is to DO. Get your
hands dirty! Dont be afraid to tinker with things. Start small by modifying
existing functions. Then, work your way up to creating new functions by copying old
@ -667,8 +667,7 @@ the argument splitting functions to properly handle user input such as: "put the
cabbage in the bag".
bool is_number (const char *str) Tests if an entire string is an ASCII-encoded,
unsigned decimal number by performing isdigit() on each character of the string.
Only unsigned (zero or positive) numbers are recognized.
decimal number by performing isdigit() on each character of the string.
char *delete_doubledollar (char *string) The MUD, in processing input, converts a
single dollar sign to a double dollar sign. If you want to echo out a users input
@ -1675,4 +1674,4 @@ FALSE:: The procedure did not process the command given and it should be process
in the standard way by the command interpreter.
TRUE:: The procedure reacted to the command given and so, the command interpreter
should ignore it.
should ignore it.