Browse Source

BUG#25340

pull/374/head
unknown 18 years ago
parent
commit
5a6b357e6f
  1. 2
      win/configure.js

2
win/configure.js

@ -134,6 +134,8 @@ function GetValue(str, key)
var end = str.indexOf("\n", pos);
if (str.charAt(pos) == "\"")
pos++;
if (str.charAt(end-1) == "\r")
end--;
if (str.charAt(end-1) == "\"")
end--;
return str.substring(pos, end);

Loading…
Cancel
Save