Browse Source

*** empty log message ***

David Rose 24 years ago
parent
commit
45a1972ecc
2 changed files with 2 additions and 2 deletions
  1. 1 1
      ppremake/configure.in
  2. 1 1
      ppremake/ppScope.cxx

+ 1 - 1
ppremake/configure.in

@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT(ppremake.cxx)
 AC_INIT(ppremake.cxx)
-AM_INIT_AUTOMAKE(ppremake, 0.60)
+AM_INIT_AUTOMAKE(ppremake, 0.61)
 AM_CONFIG_HEADER(config.h)
 AM_CONFIG_HEADER(config.h)
 
 
 AC_PREFIX_DEFAULT(/usr/local/panda)
 AC_PREFIX_DEFAULT(/usr/local/panda)

+ 1 - 1
ppremake/ppScope.cxx

@@ -1820,7 +1820,7 @@ expand_wordlist(const string &params) {
   tokenize_whitespace(expand_string(tokens[2]), words);
   tokenize_whitespace(expand_string(tokens[2]), words);
 
 
   start = max(start, 1);
   start = max(start, 1);
-  end = min(end, (int)words.size());
+  end = min(end, (int)words.size() + 1);
 
 
   if (end < start) {
   if (end < start) {
     return string();
     return string();