mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Fix a debugger bug where it would not support statements like print(3).
This is a manual merge of a branch of Vlad Grigorescu. BIT-1703 #merged
This commit is contained in:
parent
0bc4a5ea52
commit
48f505f706
3 changed files with 9 additions and 1 deletions
5
CHANGES
5
CHANGES
|
@ -1,4 +1,9 @@
|
||||||
|
|
||||||
|
2.5-beta-21 | 2016-09-26 10:15:23 -0700
|
||||||
|
|
||||||
|
* Fix a debugger bug where it would not support statements like print(3).
|
||||||
|
Addresses BIT-1703. (Vlad Grigorescu)
|
||||||
|
|
||||||
2.5-beta-19 | 2016-09-19 17:16:40 -0700
|
2.5-beta-19 | 2016-09-19 17:16:40 -0700
|
||||||
|
|
||||||
* Kerberos updates (Vlad Grigorescu):
|
* Kerberos updates (Vlad Grigorescu):
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.5-beta-19
|
2.5-beta-21
|
||||||
|
|
|
@ -492,6 +492,9 @@ void tokenize(const char* cstr, string& operation, vector<string>& arguments)
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if ( ! delim && str[i] == '(' )
|
||||||
|
delim = ')';
|
||||||
|
|
||||||
else if ( ! delim && (str[i] == '\'' || str[i] == '"') )
|
else if ( ! delim && (str[i] == '\'' || str[i] == '"') )
|
||||||
delim = str[i];
|
delim = str[i];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue