OSDN Git Service

remove some comments.
authorvisor <visor@users.sourceforge.jp>
Sat, 28 Feb 2015 05:13:48 +0000 (14:13 +0900)
committervisor <visor@users.sourceforge.jp>
Sat, 28 Feb 2015 05:13:48 +0000 (14:13 +0900)
lib/expr.cc
lib/formfile.cc

index 9cd18b0..fd44a54 100644 (file)
@@ -237,9 +237,6 @@ MNode*  progn (MNode* arg, MlEnv* mlenv) {
     assert (arg->isCons ());
     while (arg && ! mlenv->breaksym ()) {
        if (arg->car ()) {
-#ifdef DEBUG
-//         mlenv->logSexp (arg->car ());
-#endif /* DEBUG */
            ans = eval (arg->car (), mlenv);
            if (mlenv->breaksym ())
                return mlenv->breakval ();
@@ -262,9 +259,6 @@ void  progn_ex (MNode* arg, MlEnv* mlenv) {
        mlenv->mlPool->resetProg ();
        while (arg && ! mlenv->breaksym ()) {
            if (arg->car () && arg->car ()->isCons ()) {
-#ifdef DEBUG
-//             mlenv->logSexp (arg->car ());
-#endif /* DEBUG */
                ans = eval (arg->car (), mlenv);
                if (mlenv->breaksym ()) {
                    mlenv->setBreak (NULL, NULL);
@@ -613,7 +607,6 @@ void  setParams (MNode* list, int nparam, std::vector<MNode*>* params, paramList
                        throw (uErrorWrongNumber);
                    }
                } else {
-//                 goto Bp1;
                    delete kw;
                    throw (uQ2 + *u + uQ2 + uErrorBadParam);
                }
@@ -624,7 +617,6 @@ void  setParams (MNode* list, int nparam, std::vector<MNode*>* params, paramList
                    nextNode (list);
                    kw->setVar (name, mlTrue);
                } else {
-//                 goto Bp1;
                    delete kw;
                    throw (uQ2 + *u + uQ2 + uErrorBadParam);
                }
index 2574fc2..441a724 100644 (file)
@@ -119,10 +119,8 @@ void  CGIFormFile::searchPart (MotorEnv* env) {
 #endif /* DEBUG */
            if (filename.size () > 0) {
                int  k1, k2;
-//             v = to_ustring (parts.size ());
                k2 = parts.size ();
                fix (name);
-//             insert (filearg, name, v);
                parts.push_back (part (b, x));
                fix (filename);
                k1 = insert (iarg, name, filePart_osSafe (filename));