|
33 | 33 | * Portions Copyright (c) 1994, Regents of the University of California |
34 | 34 | * |
35 | 35 | * IDENTIFICATION |
36 | | - * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.11 2005/05/3014:50:35 momjian Exp $ |
| 36 | + * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.12 2005/05/3016:48:47 momjian Exp $ |
37 | 37 | * |
38 | 38 | *------------------------------------------------------------------------- |
39 | 39 | */ |
@@ -849,7 +849,7 @@ other. |
849 | 849 | "\\r"{appendPQExpBufferChar(output_buf,'\r'); } |
850 | 850 | "\\f"{appendPQExpBufferChar(output_buf,'\f'); } |
851 | 851 |
|
852 | | -"\\"[0-7]{1,3}{ |
| 852 | +{xqoctesc}{ |
853 | 853 | /* octal case */ |
854 | 854 | appendPQExpBufferChar(output_buf, |
855 | 855 | (char)strtol(yytext +1,NULL,8)); |
|