-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
skip_file macro replaced with skip macro. #4686
skip_file macro replaced with skip macro. #4686
Conversation
@@ -1,4 +1,4 @@ | |||
{% skip_file unless flag?(:openbsd) %} | |||
{% skip() unless flag?(:openbsd) %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it require the empty call args?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unsure but skip
macro is tested and documented with ()
.
Will check now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
()
are required due to
1) Semantic: macro skip macro directive skips expanding the rest of the current file
Error in line 6: expanding macro
in line 6: undefined macro variable 'skip'
Why? |
@ysbaddaden Current codebase fail on
|
Wouldn't it make more sense to rename everything to |
/cc @mverzilli |
Thanks. Always link or copy-paste explanations. We do not necessarily notice buried comments. Keep |
I see your point that So I'd suggest that we closed this PR and opened another one renaming |
It's time to prefer |
Follow #4675 (comment)