File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Tools/c-analyzer/c_parser/parser Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ def internalTk():
203
203
204
204
# Do we use 8.6.8 when building our own copy
205
205
# of Tcl/Tk or a modern version.
206
- # We use the old version when buildin on
206
+ # We use the old version when building on
207
207
# old versions of macOS due to build issues.
208
208
def useOldTk ():
209
209
return getBuildTuple () < (10 , 15 )
Original file line number Diff line number Diff line change 42
42
+ (stmt) case: between expression and stmt
43
43
+ (stmt) default: between "default" and stmt
44
44
* "="
45
- + (decl) delaration : between decl and initializer
45
+ + (decl) declaration : between decl and initializer
46
46
+ (decl) enumerator: between identifier and "initializer"
47
47
+ (expr) assignment: between "var" and expr
48
48
92
92
* no "inline" type decls in function return types
93
93
* no superfluous parentheses in declarators
94
94
* var decls in for loops are always "simple" (e.g. no inline types)
95
- * only inline struct/union/enum decls may be anonymouns (without a name)
95
+ * only inline struct/union/enum decls may be anonymous (without a name)
96
96
* no function pointers in function pointer parameters
97
97
* for loop "headers" do not have curly braces (e.g. compound init)
98
98
* syntactically, variable decls do not overlap with stmts/exprs, except
You can’t perform that action at this time.
0 commit comments