-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
libgis: Rename ap_copy to aq for G_aprintf #3651
Conversation
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.
If there is no mentions in docs to adjust (assuming it's in the private part of the library), shouldn't be a problem.
But what does aq mean? Is it a convention? |
|
And |
I think "argument pointer"? |
Maybe aq isn't as descriptive then, since it isn't just an loop variable, but had a meaning (that variable had to be copied as we saw from the vasprintf bug that #3650 would fix) |
I think it became kind of a convention because it's from the man page of |
You convinced me easily! |
This PR simply renames
ap_copy
toaq
. I just like this name better from theva_copy
man page ;-).