mirror of
https://gitlab.com/rnger/amath
synced 2025-10-05 02:19:17 +00:00
Fixed typo
This commit is contained in:
@ -127,7 +127,7 @@
|
||||
// -----------------------------------------------------
|
||||
|
||||
#define ARCH ACPU AFPU ASYSNAME ATEST
|
||||
#define ATITLE "amath version 1.5.5"
|
||||
#define ATITLE "amath version 1.5.6"
|
||||
#define ACOPYRIGHT "(c) 2015 Carsten Sonne Larsen"
|
||||
#define ASTARTMSG ATITLE SPACE ARCH SPACE ACOPYRIGHT
|
||||
|
||||
@ -179,7 +179,7 @@
|
||||
NORMALTEXT COLOR02 ITALICS \
|
||||
"Type help to show info." NEWLINE \
|
||||
NORMALTEXT
|
||||
#define PROMT NORMALTEXT "-> "
|
||||
#define PROMPT NORMALTEXT "> "
|
||||
|
||||
#define TXTLISTDIRHEADER \
|
||||
"Type Name" NEWLINE \
|
||||
|
@ -46,6 +46,5 @@ void ConsoleBase::StartMessage()
|
||||
|
||||
void ConsoleBase::Promt()
|
||||
{
|
||||
WriteString(PROMT);
|
||||
WriteString(PROMPT);
|
||||
}
|
||||
|
||||
|
@ -254,11 +254,11 @@ void AnsiConoleEngine::ShowLast()
|
||||
out->Empty();
|
||||
out->EnsureSize(
|
||||
StrLen(DELETELINE) +
|
||||
StrLen(PROMT) +
|
||||
StrLen(PROMPT) +
|
||||
StrLen(lines[showline]) + 1);
|
||||
|
||||
out->Append(DELETELINE);
|
||||
out->Append(PROMT);
|
||||
out->Append(PROMPT);
|
||||
out->Append(lines[showline]);
|
||||
|
||||
linebuf->Empty();
|
||||
@ -285,7 +285,7 @@ void AnsiConoleEngine::ShowNext()
|
||||
|
||||
out->Empty();
|
||||
out->Append(DELETELINE);
|
||||
out->Append(PROMT);
|
||||
out->Append(PROMPT);
|
||||
|
||||
if (showline > curline) {
|
||||
out->EnsureGrowth(StrLen(editline) + 1);
|
||||
|
Reference in New Issue
Block a user