From: Richard M. Stallman Date: Mon, 25 May 1998 16:01:08 +0000 (+0000) Subject: (setpgrp): Remove extra parens around parameters. X-Git-Tag: emacs-20.3~848 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e1348eee9cd9ea4a4661a1487a5fc8a1e21a692;p=emacs.git (setpgrp): Remove extra parens around parameters. --- diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 3113565d36e..d0d8a95bca6 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -301,4 +301,4 @@ Boston, MA 02111-1307, USA. */ actually set a process group. */ #define BSD_PGRPS -#define setpgrp(pid,pgid) setpgid((pid),(pgid)) +#define setpgrp(pid,pgid) setpgid(pid,pgid)