aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql')
-rw-r--r--src/bin/psql/Makefile2
-rw-r--r--src/bin/psql/command.c2
-rw-r--r--src/bin/psql/command.h2
-rw-r--r--src/bin/psql/common.c2
-rw-r--r--src/bin/psql/common.h2
-rw-r--r--src/bin/psql/copy.c2
-rw-r--r--src/bin/psql/copy.h2
-rw-r--r--src/bin/psql/create_help.pl2
-rw-r--r--src/bin/psql/describe.c2
-rw-r--r--src/bin/psql/describe.h2
-rw-r--r--src/bin/psql/help.c2
-rw-r--r--src/bin/psql/help.h2
-rw-r--r--src/bin/psql/input.c2
-rw-r--r--src/bin/psql/input.h2
-rw-r--r--src/bin/psql/large_obj.c2
-rw-r--r--src/bin/psql/large_obj.h2
-rw-r--r--src/bin/psql/mainloop.c2
-rw-r--r--src/bin/psql/mainloop.h2
-rw-r--r--src/bin/psql/mbprint.c2
-rw-r--r--src/bin/psql/nls.mk2
-rw-r--r--src/bin/psql/po/cs.po2
-rw-r--r--src/bin/psql/po/de.po2
-rw-r--r--src/bin/psql/po/fr.po2
-rw-r--r--src/bin/psql/po/hu.po2
-rw-r--r--src/bin/psql/po/ru.po2
-rw-r--r--src/bin/psql/po/sv.po2
-rw-r--r--src/bin/psql/po/zh_CN.po2
-rw-r--r--src/bin/psql/print.c2
-rw-r--r--src/bin/psql/print.h2
-rw-r--r--src/bin/psql/prompt.c2
-rw-r--r--src/bin/psql/prompt.h2
-rw-r--r--src/bin/psql/settings.h2
-rw-r--r--src/bin/psql/startup.c2
-rw-r--r--src/bin/psql/stringutils.c2
-rw-r--r--src/bin/psql/tab-complete.c2
-rw-r--r--src/bin/psql/tab-complete.h2
-rw-r--r--src/bin/psql/variables.c2
-rw-r--r--src/bin/psql/variables.h2
38 files changed, 38 insertions, 38 deletions
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index e8afcf6d2ee..76f0dc7a952 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.37 2003/08/08 04:52:21 momjian Exp $
+# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.38 2003/11/29 19:52:06 pgsql Exp $
#
#-------------------------------------------------------------------------
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 45a40e19e35..6a26ef549ae 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.105 2003/10/11 18:04:26 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.106 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "command.h"
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h
index 15f8f3fe0bb..dca0de82863 100644
--- a/src/bin/psql/command.h
+++ b/src/bin/psql/command.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/command.h,v 1.17 2003/08/04 23:59:39 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.18 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef COMMAND_H
#define COMMAND_H
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index d7f81ece666..9d00e4ad80f 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.77 2003/11/12 22:53:16 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.78 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "common.h"
diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h
index f5719bb2584..74e6deb2346 100644
--- a/src/bin/psql/common.h
+++ b/src/bin/psql/common.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/common.h,v 1.29 2003/09/03 22:05:09 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.30 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef COMMON_H
#define COMMON_H
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c
index b3c07ffab53..91e11e40001 100644
--- a/src/bin/psql/copy.c
+++ b/src/bin/psql/copy.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.33 2003/08/04 23:59:39 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.34 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "copy.h"
diff --git a/src/bin/psql/copy.h b/src/bin/psql/copy.h
index 32aec5bd666..0f6a6887969 100644
--- a/src/bin/psql/copy.h
+++ b/src/bin/psql/copy.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/copy.h,v 1.13 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.14 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef COPY_H
#define COPY_H
diff --git a/src/bin/psql/create_help.pl b/src/bin/psql/create_help.pl
index 6cba6b06413..fb3bf3c3512 100644
--- a/src/bin/psql/create_help.pl
+++ b/src/bin/psql/create_help.pl
@@ -5,7 +5,7 @@
#
# Copyright (c) 2000-2003, PostgreSQL Global Development Group
#
-# $Header: /cvsroot/pgsql/src/bin/psql/create_help.pl,v 1.9 2003/09/14 22:37:12 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/create_help.pl,v 1.10 2003/11/29 19:52:06 pgsql Exp $
#################################################################
#
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 7894ddecf44..f8dc818ea14 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.87 2003/10/26 02:53:45 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.88 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "describe.h"
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h
index 8c2e864474a..e5c9460e9f1 100644
--- a/src/bin/psql/describe.h
+++ b/src/bin/psql/describe.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.21 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.22 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef DESCRIBE_H
#define DESCRIBE_H
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 7a0f9c883e1..168ddf37160 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.81 2003/10/02 06:39:31 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.82 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "common.h"
diff --git a/src/bin/psql/help.h b/src/bin/psql/help.h
index 98ee89c0db1..110746e9053 100644
--- a/src/bin/psql/help.h
+++ b/src/bin/psql/help.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/help.h,v 1.13 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/help.h,v 1.14 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef HELP_H
#define HELP_H
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c
index 085c95c6351..90c2c92993d 100644
--- a/src/bin/psql/input.c
+++ b/src/bin/psql/input.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.31 2003/09/12 02:40:09 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.32 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "input.h"
diff --git a/src/bin/psql/input.h b/src/bin/psql/input.h
index dfe9cf6ba41..36b9b087fe3 100644
--- a/src/bin/psql/input.h
+++ b/src/bin/psql/input.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/input.h,v 1.20 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/input.h,v 1.21 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef INPUT_H
#define INPUT_H
diff --git a/src/bin/psql/large_obj.c b/src/bin/psql/large_obj.c
index 16cb1b947a7..18ad2f11482 100644
--- a/src/bin/psql/large_obj.c
+++ b/src/bin/psql/large_obj.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/large_obj.c,v 1.30 2003/11/21 22:32:49 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.31 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "large_obj.h"
diff --git a/src/bin/psql/large_obj.h b/src/bin/psql/large_obj.h
index 5dfa8b68523..a575e6aa86e 100644
--- a/src/bin/psql/large_obj.h
+++ b/src/bin/psql/large_obj.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/large_obj.h,v 1.12 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/large_obj.h,v 1.13 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef LARGE_OBJ_H
#define LARGE_OBJ_H
diff --git a/src/bin/psql/mainloop.c b/src/bin/psql/mainloop.c
index 0468a8ec469..94d7706d51a 100644
--- a/src/bin/psql/mainloop.c
+++ b/src/bin/psql/mainloop.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/mainloop.c,v 1.57 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.58 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
#include "mainloop.h"
diff --git a/src/bin/psql/mainloop.h b/src/bin/psql/mainloop.h
index 67567a5cebb..d1ff49f8f7e 100644
--- a/src/bin/psql/mainloop.h
+++ b/src/bin/psql/mainloop.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/mainloop.h,v 1.14 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.15 2003/11/29 19:52:06 pgsql Exp $
*/
#ifndef MAINLOOP_H
#define MAINLOOP_H
diff --git a/src/bin/psql/mbprint.c b/src/bin/psql/mbprint.c
index f8560f81665..0adad14708e 100644
--- a/src/bin/psql/mbprint.c
+++ b/src/bin/psql/mbprint.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/mbprint.c,v 1.12 2003/09/12 02:40:09 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.13 2003/11/29 19:52:06 pgsql Exp $
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/nls.mk b/src/bin/psql/nls.mk
index 36a62fcaf8b..8a9088d4395 100644
--- a/src/bin/psql/nls.mk
+++ b/src/bin/psql/nls.mk
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/src/bin/psql/nls.mk,v 1.14 2003/10/06 21:50:44 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/nls.mk,v 1.15 2003/11/29 19:52:07 pgsql Exp $
CATALOG_NAME := psql
AVAIL_LANGUAGES := cs de es fr hu it nb pt_BR ru sl sv zh_CN zh_TW
GETTEXT_FILES := command.c common.c copy.c help.c input.c large_obj.c \
diff --git a/src/bin/psql/po/cs.po b/src/bin/psql/po/cs.po
index 8b2e50f0c43..0f6b3a776f2 100644
--- a/src/bin/psql/po/cs.po
+++ b/src/bin/psql/po/cs.po
@@ -1,7 +1,7 @@
# Czech message translation file for psql
# Karel Zak <zakkr@zf.jcu.cz>, 2001-2003.
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/cs.po,v 1.2 2003/07/23 09:36:09 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/cs.po,v 1.3 2003/11/29 19:52:07 pgsql Exp $
#
msgid ""
msgstr ""
diff --git a/src/bin/psql/po/de.po b/src/bin/psql/po/de.po
index 51f1f15e7e1..6d6aed35e8e 100644
--- a/src/bin/psql/po/de.po
+++ b/src/bin/psql/po/de.po
@@ -1,7 +1,7 @@
# German message translation file for psql
# Peter Eisentraut <peter_e@gmx.net>, 2001, 2002, 2003.
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/de.po,v 1.9 2003/11/14 02:08:17 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/de.po,v 1.10 2003/11/29 19:52:07 pgsql Exp $
#
# Use these quotes: »%s«
#
diff --git a/src/bin/psql/po/fr.po b/src/bin/psql/po/fr.po
index a5aa84f835e..96558ee1dd5 100644
--- a/src/bin/psql/po/fr.po
+++ b/src/bin/psql/po/fr.po
@@ -1,6 +1,6 @@
# French message translation file for psql
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/fr.po,v 1.4 2003/08/31 17:38:06 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/fr.po,v 1.5 2003/11/29 19:52:07 pgsql Exp $
#
# Use these quotes: «%s»
# Peter Eisentraut <peter_e@gmx.net>, 2001.
diff --git a/src/bin/psql/po/hu.po b/src/bin/psql/po/hu.po
index 6dc1ab1519c..c91a2810ca1 100644
--- a/src/bin/psql/po/hu.po
+++ b/src/bin/psql/po/hu.po
@@ -1,7 +1,7 @@
# Hungarian message translation file for psql
# Krisztian Szekely <szekelyk@different.hu>, 2003.
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/Attic/hu.po,v 1.2 2003/06/29 10:13:13 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/hu.po,v 1.3 2003/11/29 19:52:07 pgsql Exp $
#
msgid ""
msgstr ""
diff --git a/src/bin/psql/po/ru.po b/src/bin/psql/po/ru.po
index 60da0920bf5..86068099638 100644
--- a/src/bin/psql/po/ru.po
+++ b/src/bin/psql/po/ru.po
@@ -1,6 +1,6 @@
# PSQL Translated Messages into the Russian Language (KOI8-R)
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/Attic/ru.po,v 1.8 2003/10/13 21:38:37 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/ru.po,v 1.9 2003/11/29 19:52:07 pgsql Exp $
#
# ChangeLog:
# - July 26 - October 12, 2003: Update for 7.4.x; <mokhov@cs.concordia.ca>
diff --git a/src/bin/psql/po/sv.po b/src/bin/psql/po/sv.po
index f240821b33e..3d915d20c9b 100644
--- a/src/bin/psql/po/sv.po
+++ b/src/bin/psql/po/sv.po
@@ -2,7 +2,7 @@
# Peter Eisentraut <peter_e@gmx.net>, 2001.
# Dennis Björklund <db@zigo.dhs.org>, 2002, 2003.
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/sv.po,v 1.10 2003/10/10 08:01:44 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/sv.po,v 1.11 2003/11/29 19:52:07 pgsql Exp $
#
# Use these quotes: "%s"
#
diff --git a/src/bin/psql/po/zh_CN.po b/src/bin/psql/po/zh_CN.po
index 42bf6e4b0a7..8bb1aa7aecb 100644
--- a/src/bin/psql/po/zh_CN.po
+++ b/src/bin/psql/po/zh_CN.po
@@ -1,7 +1,7 @@
# simplified Chinese translation file for psql
# Weiping He <laser@zhengmai.com.cn>, 2002.
#
-# $Header: /cvsroot/pgsql/src/bin/psql/po/Attic/zh_CN.po,v 1.3 2003/09/15 20:41:59 petere Exp $
+# $PostgreSQL: pgsql/src/bin/psql/po/zh_CN.po,v 1.4 2003/11/29 19:52:07 pgsql Exp $
#
msgid ""
msgstr ""
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c
index 95bc2797c47..890b2efd5a8 100644
--- a/src/bin/psql/print.c
+++ b/src/bin/psql/print.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.43 2003/08/14 18:49:42 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.44 2003/11/29 19:52:07 pgsql Exp $
*/
#include "postgres_fe.h"
#include "common.h"
diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h
index cc797057315..92394b287c6 100644
--- a/src/bin/psql/print.h
+++ b/src/bin/psql/print.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/print.h,v 1.19 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.20 2003/11/29 19:52:07 pgsql Exp $
*/
#ifndef PRINT_H
#define PRINT_H
diff --git a/src/bin/psql/prompt.c b/src/bin/psql/prompt.c
index 18f4b1aac43..2b786e201c9 100644
--- a/src/bin/psql/prompt.c
+++ b/src/bin/psql/prompt.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/prompt.c,v 1.30 2003/10/04 01:04:46 petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.31 2003/11/29 19:52:07 pgsql Exp $
*/
#include "postgres_fe.h"
#include "prompt.h"
diff --git a/src/bin/psql/prompt.h b/src/bin/psql/prompt.h
index 039b5c6d2be..433f70a3af8 100644
--- a/src/bin/psql/prompt.h
+++ b/src/bin/psql/prompt.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/prompt.h,v 1.12 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/prompt.h,v 1.13 2003/11/29 19:52:07 pgsql Exp $
*/
#ifndef PROMPT_H
#define PROMPT_H
diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h
index f3e703ab862..9c16402ac4c 100644
--- a/src/bin/psql/settings.h
+++ b/src/bin/psql/settings.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/settings.h,v 1.15 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/settings.h,v 1.16 2003/11/29 19:52:07 pgsql Exp $
*/
#ifndef SETTINGS_H
#define SETTINGS_H
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c
index 1aee5bc8a9a..a0640b1836c 100644
--- a/src/bin/psql/startup.c
+++ b/src/bin/psql/startup.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.80 2003/09/29 18:21:33 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.81 2003/11/29 19:52:07 pgsql Exp $
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c
index bede573b9a8..1dbc369df9b 100644
--- a/src/bin/psql/stringutils.c
+++ b/src/bin/psql/stringutils.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.34 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/stringutils.c,v 1.35 2003/11/29 19:52:07 pgsql Exp $
*/
#include "postgres_fe.h"
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 36da8ed56fd..f7e346478aa 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.93 2003/11/08 20:54:24 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.94 2003/11/29 19:52:07 pgsql Exp $
*/
/*----------------------------------------------------------------------
diff --git a/src/bin/psql/tab-complete.h b/src/bin/psql/tab-complete.h
index b517ebaccde..5479a59aa86 100644
--- a/src/bin/psql/tab-complete.h
+++ b/src/bin/psql/tab-complete.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.h,v 1.9 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/tab-complete.h,v 1.10 2003/11/29 19:52:07 pgsql Exp $
*/
#ifndef TAB_COMPLETE_H
#define TAB_COMPLETE_H
diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c
index 697a844bd92..2275b818fb4 100644
--- a/src/bin/psql/variables.c
+++ b/src/bin/psql/variables.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/variables.c,v 1.13 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/variables.c,v 1.14 2003/11/29 19:52:07 pgsql Exp $
*/
#include "postgres_fe.h"
#include "variables.h"
diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h
index 88e1af8f6fb..763d515b928 100644
--- a/src/bin/psql/variables.h
+++ b/src/bin/psql/variables.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/variables.h,v 1.14 2003/08/04 23:59:40 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/variables.h,v 1.15 2003/11/29 19:52:07 pgsql Exp $
*/
/*