mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
More Win32 tilde code comments.
This commit is contained in:
parent
3d44763179
commit
92eadf6c4a
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.99 2005/06/10 14:41:32 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.100 2005/06/10 14:49:31 momjian Exp $
|
||||
*/
|
||||
#include "postgres_fe.h"
|
||||
#include "common.h"
|
||||
@ -1294,7 +1294,11 @@ expand_tilde(char **filename)
|
||||
if (!filename || !(*filename))
|
||||
return NULL;
|
||||
|
||||
/* MSDOS uses tilde for short versions of long file names, so skip it. */
|
||||
/*
|
||||
* WIN32 doesn't use tilde expansion for file names.
|
||||
* Also, it uses tilde for short versions of long file names,
|
||||
* though the tilde is usually toward the end, not at the beginning.
|
||||
*/
|
||||
#ifndef WIN32
|
||||
|
||||
/* try tilde expansion */
|
||||
|
Loading…
Reference in New Issue
Block a user