Skip to content

Commit

Permalink
Merge pull request #18 from M-griffin/feature/ArchCleanUp
Browse files Browse the repository at this point in the history
Feature archcleanup
  • Loading branch information
M-griffin committed Nov 26, 2017
2 parents 6ccd59f + a5359f6 commit 6357c50
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/msg_fse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ int msg_fse::line_total()
}

/**
* Full Screen Editor - Delete Line and Move up
* Full Screen Editor - Delete Line and Move up
* One Line then to the End (for Backspaces)
*/
void msg_fse::delete_line_up()
Expand All @@ -371,7 +371,7 @@ void msg_fse::delete_line_up()
}

if ( current_node->up_link != 0) {

tmp = current_node;
if (current_node->dn_link != 0) {
current_node->up_link->dn_link = current_node->dn_link;
Expand Down Expand Up @@ -729,14 +729,14 @@ int msg_fse::format_paragraph()
sTmpLine.erase((int)sTmpLine.size()-1,1);
else break;
}

current_node->data = sTmpLine;
++Tot;
current_node = current_node->up_link;
return FALSE;
}
}

return FALSE;
}

Expand Down Expand Up @@ -862,7 +862,7 @@ void msg_fse::add_char(unsigned char c)
Line += sCharTemp;
}
}

++Col;
++iColPos;
iLineSize = Line.size();
Expand Down Expand Up @@ -1064,7 +1064,7 @@ int msg_fse::options_prompt(unsigned char c)

char mString[10] = {0};
unsigned char ch;
char qText[100]= {0};
char qText[255]= {0};

std::string qbuf;
std::string QuoteStr;
Expand Down Expand Up @@ -1212,7 +1212,7 @@ int msg_fse::options_prompt(unsigned char c)
}

/**
* Full Screen Editor - Insert Lines Comming from Message
* Full Screen Editor - Insert Lines Comming from Message
* Reader stright into FSE List for Message Edit.
* Used on Reply or Edit.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

using namespace std;

# define BBSVERSION "Enthral BBS 0.700.1"
# define BBSVERSION "Enthral BBS 0.700.2"
extern char OSSYSTEM[1024];
extern int UTF8Output;

Expand Down

0 comments on commit 6357c50

Please sign in to comment.