Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b9a87e5

Browse files
committed
Un-break plpgsql build by removing unwanted _() usage.
This would be a completely inappropriate place to apply localization anyway.
1 parent e3267b6 commit b9a87e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pl/plpgsql/src/pl_exec.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* procedural language
44
*
55
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.130 2005/02/22 07:18:24 neilc Exp $
6+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.131 2005/02/23 16:23:07 tgl Exp $
77
*
88
* This software is copyrighted by Jan Wieck - Hamburg.
99
*
@@ -702,7 +702,7 @@ plpgsql_exec_error_callback(void *arg)
702702
*/
703703
errcontext("PL/pgSQL function \"%s\" %s",
704704
estate->err_func->fn_name,
705-
_(estate->err_text));
705+
estate->err_text);
706706
}
707707
else
708708
errcontext("PL/pgSQL function \"%s\"",

0 commit comments

Comments
 (0)