Skip to content

Commit d83b280

Browse files
committed
More code cleanups (comments)
1 parent e8b5c97 commit d83b280

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,12 @@ using_git.txt
5555
#
5656
# VS2005 user-specific project data
5757
#
58-
MUSHclient.vcproj.*
58+
MUSHclient.vcproj.*
59+
60+
#
61+
# VS2010 user-specific project data
62+
#
63+
MUSHclient.vcxproj.*
64+
MUSHclient.sdf
65+
MUSHclient.opensdf
66+
ipch

scripting/lrexlib.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66
// Implements:
77

88
// rex.flags
9-
// rex.new
9+
// re = rex.new
1010
// rex.version
1111

12+
// re:exec
13+
// re:match
14+
// re:gmatch
15+
1216
#include <stdio.h>
1317
#include <stdlib.h>
1418
#include <string.h>

scripting/lua_progressdlg.cpp

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
// Implements:
44

5-
// progress.new
5+
// dlg = progress.new
6+
7+
// dlg:checkcancel
8+
// dlg:close
9+
// dlg:position
10+
// dlg:range
11+
// dlg:setstep
12+
// dlg:status
13+
// dlg:step
14+
615

716
#include "stdafx.h"
817
#include "..\MUSHclient.h"

scripting/scripting.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// WSH (Windows Script Host) scripting-related stuff goes here
2+
//
3+
// See lua_scripting.cpp for Lua-related scripting
4+
15
#include "stdafx.h"
26
#include "..\mainfrm.h"
37
#include "..\MUSHclient.h"
@@ -13,8 +17,6 @@ static char BASED_CODE THIS_FILE[] = __FILE__;
1317
//#define new DEBUG_NEW
1418
#endif
1519

16-
// all scripting-related stuff goes here
17-
1820

1921
bool CMUSHclientDoc::CreateScriptEngine()
2022
{

0 commit comments

Comments
 (0)