[HACKERS] Problem with do_quote_ident()

2002-03-27 Thread Bruce Momjian
I see in quote.c::do_quote_ident(): *cp2++ = ''; while (len-- 0) { if (*cp1 == '') *cp2++ = ''; if (*cp1 == '\\') *cp2++ = '\\'; *cp2++ = *cp1++; } *cp2++ =

Re: [HACKERS] Problem with do_quote_ident()

2002-03-27 Thread Jan Wieck
Bruce Momjian wrote: I see in quote.c::do_quote_ident(): *cp2++ = ''; while (len-- 0) { if (*cp1 == '') *cp2++ = ''; if (*cp1 == '\\') *cp2++ = '\\'; *cp2++ = *cp1++; } *cp2++ = ''; I am confused by the backslash