Actually convert escape chars in --vprod. (#139058, Christophe Saout)

2004-04-22  Matthias Clasen  <mclasen@redhat.com>

	* glib-mkenums.in: Actually convert escape chars in
	--vprod.   (#139058, Christophe Saout)
This commit is contained in:
Matthias Clasen 2004-04-22 21:02:34 +00:00 committed by Matthias Clasen
parent 48deca6379
commit 5868112a61
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-04-22 Matthias Clasen <mclasen@redhat.com>
* glib-mkenums.in: Actually convert escape chars in
--vprod. (#139058, Christophe Saout)
2004-04-15 Matthias Clasen <mclasen@redhat.com>
* gparamspecs.c (param_float_init): Correct the initial

View File

@ -410,7 +410,7 @@ while (<>) {
$prod =~ s/\\f/\f/g; $prod =~ s/\\r/\r/g;
for (@entries) {
my ($name,$nick) = @{$_};
my $tmp_prod = $vprod;
my $tmp_prod = $prod;
$tmp_prod =~ s/\@VALUENAME\@/$name/g;
$tmp_prod =~ s/\@valuenick\@/$nick/g;