Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 May 2014 23:32:45 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r265250 - head/contrib/top
Message-ID:  <201405022332.s42NWjUs016669@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Fri May  2 23:32:44 2014
New Revision: 265250
URL: http://svnweb.freebsd.org/changeset/base/265250

Log:
  - Add a hint for 'u' and 'J' command that '+' displays all.
  
  MFC after:	2 weeks

Modified:
  head/contrib/top/top.c

Modified: head/contrib/top/top.c
==============================================================================
--- head/contrib/top/top.c	Fri May  2 23:30:39 2014	(r265249)
+++ head/contrib/top/top.c	Fri May  2 23:32:44 2014	(r265250)
@@ -1007,7 +1007,7 @@ restart:
 
 			    case CMD_user:
 				new_message(MT_standout,
-				    "Username to show: ");
+				    "Username to show (+ for all): ");
 				if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
 				{
 				    if (tempbuf2[0] == '+' &&
@@ -1101,7 +1101,7 @@ restart:
 
 			    case CMD_jail:
 				new_message(MT_standout,
-				    "Jail to show: ");
+				    "Jail to show (+ for all): ");
 				if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
 				{
 				    if (tempbuf2[0] == '+' &&



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405022332.s42NWjUs016669>