-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recognize all macro definitions in hash-style comments (#338)
Recognize all macro definitions in hash-style comments Macro definitions can be commented out by replacing '%' with '#', for example %global debug 1 with #global debug 1, to avoid Macro expanded in comment warning. However, the same can be achieved also by escaping the '%' in the comment, i.e. #%%global debug 1, and even if the '%' is not escaped, it is still parseable, so we should be able to parse it as well. Reviewed-by: František Lachman <[email protected]> Reviewed-by: Laura Barcziová
- Loading branch information
Showing
2 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters