From owner-svn-src-all@FreeBSD.ORG Tue Dec 13 14:53:26 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6E08106564A; Tue, 13 Dec 2011 14:53:26 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 95DF28FC08; Tue, 13 Dec 2011 14:53:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pBDErQVa055345; Tue, 13 Dec 2011 14:53:26 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pBDErQjx055343; Tue, 13 Dec 2011 14:53:26 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201112131453.pBDErQjx055343@svn.freebsd.org> From: Ed Schouten Date: Tue, 13 Dec 2011 14:53:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r228473 - head/lib/libedit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2011 14:53:26 -0000 Author: ed Date: Tue Dec 13 14:53:26 2011 New Revision: 228473 URL: http://svn.freebsd.org/changeset/base/228473 Log: Don't use __P(). The rest of the file doesn't use it either and according to style(9), it should not be used. Modified: head/lib/libedit/histedit.h Modified: head/lib/libedit/histedit.h ============================================================================== --- head/lib/libedit/histedit.h Tue Dec 13 14:36:04 2011 (r228472) +++ head/lib/libedit/histedit.h Tue Dec 13 14:53:26 2011 (r228473) @@ -158,8 +158,8 @@ void el_resize(EditLine *); /* * Set user private data. */ -void el_data_set __P((EditLine *, void *)); -void * el_data_get __P((EditLine *)); +void el_data_set(EditLine *, void *); +void * el_data_get(EditLine *); /* * User-defined function interface.