1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@ -221,7 +221,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.31 1998/08/26 16:43:43 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/gram.c,v 2.32 1998/09/01 03:24:04 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -10153,7 +10153,7 @@ FlattenStringList(List *list)
elog(DEBUG, "flattened string is \"%s\"\n", s);
#endif
return (s);
return s;
} /* FlattenStringList() */
@ -10204,7 +10204,7 @@ makeConstantList( A_Const *n)
elog(DEBUG, "AexprConst argument is \"%s\"\n", defval);
#endif
return (result);
return result;
} /* makeConstantList() */
@ -10234,7 +10234,7 @@ fmtId(char *rawid)
((cp == rawid)? "do not ": ""), rawid, cp);
#endif
return (cp);
return cp;
}
/*