From owner-svn-src-all@FreeBSD.ORG Thu Dec 13 06:45:46 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 87A6D25A; Thu, 13 Dec 2012 06:45:46 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6C6EB8FC17; Thu, 13 Dec 2012 06:45:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBD6jk85066528; Thu, 13 Dec 2012 06:45:46 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBD6jkeE066527; Thu, 13 Dec 2012 06:45:46 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201212130645.qBD6jkeE066527@svn.freebsd.org> From: Rui Paulo Date: Thu, 13 Dec 2012 06:45:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244180 - head/contrib/top X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Thu, 13 Dec 2012 06:45:46 -0000 Author: rpaulo Date: Thu Dec 13 06:45:45 2012 New Revision: 244180 URL: http://svnweb.freebsd.org/changeset/base/244180 Log: Bump MAX_COLS to 512 to take advantage of wider terminals. Modified: head/contrib/top/top.h Modified: head/contrib/top/top.h ============================================================================== --- head/contrib/top/top.h Thu Dec 13 06:42:44 2012 (r244179) +++ head/contrib/top/top.h Thu Dec 13 06:45:45 2012 (r244180) @@ -14,7 +14,7 @@ extern int Header_lines; /* 7 */ /* Maximum number of columns allowed for display */ -#define MAX_COLS 128 +#define MAX_COLS 512 /* Log base 2 of 1024 is 10 (2^10 == 1024) */ #define LOG1024 10