From: Tom Lane Date: Wed, 4 May 2005 14:25:30 +0000 (+0000) Subject: Spell DELIMITER correctly, per Seamus Dean. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=29d8dfba42e469676bc09f017dc3a1087d295fef;p=users%2Fbernd%2Fpostgres.git Spell DELIMITER correctly, per Seamus Dean. --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 898e36fa0a..27dc36d97b 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1029,7 +1029,7 @@ psql_completion(char *text, int start, int end) pg_strcasecmp(prev2_wd, "TO") == 0)) { static const char *const list_COPY[] = - {"BINARY", "OIDS", "DELIMETER", "NULL", "CSV", NULL}; + {"BINARY", "OIDS", "DELIMITER", "NULL", "CSV", NULL}; COMPLETE_WITH_LIST(list_COPY); }