コメント修正
authorj8takagi <j8takagi@nifty.com>
Thu, 18 Feb 2010 17:23:56 +0000 (02:23 +0900)
committerj8takagi <j8takagi@nifty.com>
Thu, 18 Feb 2010 17:23:56 +0000 (02:23 +0900)
src/assemble.c

index 42c035e..0c13893 100644 (file)
@@ -98,7 +98,7 @@ void writestr(const char *str, bool literal, PASS pass)
     for(; ;) {
         /* 閉じ「'」がないまま文字列が終了した場合 */
         if(*p == '\0') {
-            setcerr(123, str);    /* illegal string */
+            setcerr(123, str);    /* unclosed quote */
             break;
         }
         /* 「'」の場合、次の文字が「'」でない場合は正常終了 */