diff options
author | Miguel de Icaza <miguel@gnu.org> | 1999-09-02 02:09:57 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-09-02 02:09:57 +0800 |
commit | 523a46f844ab6855b6888984c3f7a40a13900d74 (patch) | |
tree | f14799480820b6ca3ccb7eb5a663e81bfc3d6c5b /libversit/vcc.c | |
parent | 4ed34315759b8bb3b701133bcb704b5a4891100c (diff) | |
download | gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar.gz gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar.bz2 gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar.lz gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar.xz gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.tar.zst gsoc2013-evolution-523a46f844ab6855b6888984c3f7a40a13900d74.zip |
Added call to GNOME_COMPILE_WARNINGS.
1999-09-01 Miguel de Icaza <miguel@gnu.org>
* configure.in: Added call to GNOME_COMPILE_WARNINGS.
* libversit: Removed all the rest of the C++ comments from C
sources (per David's suggestion).
1999-09-01 David Kaelbling <drk@sgi.com>
* card.c (strtoCardRev): Off by one error fix.
svn path=/trunk/; revision=1153
Diffstat (limited to 'libversit/vcc.c')
-rw-r--r-- | libversit/vcc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libversit/vcc.c b/libversit/vcc.c index 49cbdf417a..1caadc3cb4 100644 --- a/libversit/vcc.c +++ b/libversit/vcc.c @@ -146,7 +146,7 @@ DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. #define YYDEBUG 0 /* 1 to compile in some debugging code */ #define MAXTOKEN 256 /* maximum token (line) length */ -#define YYSTACKSIZE 50 // ~unref ? +#define YYSTACKSIZE 50 /* ~unref ? */ #define MAXLEVEL 10 /* max # of nested objects parseable */ /* (includes outermost) */ @@ -1523,7 +1523,7 @@ static char* lexLookaheadWord() { int curgetptr = 0; lexSkipWhite(); lexClearToken(); - curgetptr = (int)lexBuf.getPtr; // remember! + curgetptr = (int)lexBuf.getPtr; /* remember! */ while (len < (MAX_LEX_LOOKAHEAD_0)) { c = lexGetc(); len++; @@ -1645,10 +1645,10 @@ void initLex(const char *inputstring, unsigned long inputlen, CFile *inputfile) void initLex(const char *inputstring, unsigned long inputlen, FILE *inputfile) #endif { - // initialize lex mode stack + /* initialize lex mode stack */ lexBuf.lexModeStack[lexBuf.lexModeStackTop=0] = L_NORMAL; - // iniatialize lex buffer. + /* iniatialize lex buffer. */ lexBuf.inputString = (char*) inputstring; lexBuf.inputLen = inputlen; lexBuf.curPos = 0; @@ -1712,7 +1712,7 @@ static char * lexGetDataFromBase64() } else { /* error condition */ if (bytes) free(bytes); else if (oldBytes) free(oldBytes); - // error recovery: skip until 2 adjacent newlines. + /* error recovery: skip until 2 adjacent newlines. */ DBG_(("db: invalid character 0x%x '%c'\n", c,c)); if (c != EOF) { c = lexGetc(); |