pacman/src/pacman
Dan McGee 0303b26b1e Style change: return(x) --> return x
This was discussed and more or less agreed upon on the mailing list. A
huge checkin, but if we just do it and let people adjust the pain will
end soon enough. Rebasing should be relatively straighforward for anyone
that sees conflicts; just be sure you use the new return style if
possible.

The following semantic patch was used to do the change, along with some
hand-massaging in order to preserve parenthesis where appropriate:

The semantic match that finds this problem is as follows, although some
hand-massaging was done in order to keep parenthesis where appropriate:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression a;
@@
- return(a);
+ return a;

// </smpl>

A macros_file was also provided with the following content:

Additional steps taken, mainly for ASSERT() macros:
$ sed -i -e 's#return(NULL)#return NULL#' lib/libalpm/*.c
$ sed -i -e 's#return(-1)#return -1#' lib/libalpm/*.c

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-03-20 19:49:45 -05:00
..
.gitignore Remove pacman.static build from build files 2008-07-15 19:05:24 -05:00
Makefile.am Makefile: Use git describe --dirty for GIT VERSION 2011-01-22 10:02:57 -06:00
callback.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
callback.h Mark log callback format string const 2011-02-24 09:38:59 -06:00
conf.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
conf.h Allow both cleanmethod values to be specified at the same time 2011-01-31 09:38:14 -06:00
database.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
deptest.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
package.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
package.h Update copyright years for 2011 2011-01-07 18:47:37 -06:00
pacman.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
pacman.h Update copyright years for 2011 2011-01-07 18:47:37 -06:00
query.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
remove.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
sync.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
upgrade.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
util.c Style change: return(x) --> return x 2011-03-20 19:49:45 -05:00
util.h pacman/sync: implement interactive group selection 2011-01-29 19:40:07 +01:00