mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
New entab version.
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
** entab.c - add tabs to a text file
|
** entab.c - add tabs to a text file
|
||||||
** by Bruce Momjian (root@candle.pha.pa.us)
|
** by Bruce Momjian (root@candle.pha.pa.us)
|
||||||
**
|
**
|
||||||
** version 1.1
|
** version 1.2
|
||||||
**
|
**
|
||||||
** tabsize = 4
|
** tabsize = 4
|
||||||
**
|
**
|
||||||
@ -98,6 +98,7 @@ char **argv;
|
|||||||
if (escaped == FALSE)
|
if (escaped == FALSE)
|
||||||
quote_char = ' ';
|
quote_char = ' ';
|
||||||
escaped = FALSE;
|
escaped = FALSE;
|
||||||
|
|
||||||
while (*src != NUL)
|
while (*src != NUL)
|
||||||
{
|
{
|
||||||
col_in_tab++;
|
col_in_tab++;
|
||||||
@ -150,6 +151,11 @@ char **argv;
|
|||||||
*(dst++) = ' ';
|
*(dst++) = ' ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*(dst++) = *src;
|
||||||
|
prv_spaces = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user