From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1LRqPF-0003Te-Rj for mharc-grub-devel@gnu.org; Tue, 27 Jan 2009 11:03:18 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LRqPD-0003SO-G0 for grub-devel@gnu.org; Tue, 27 Jan 2009 11:03:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LRqPC-0003Rt-PH for grub-devel@gnu.org; Tue, 27 Jan 2009 11:03:15 -0500 Received: from [199.232.76.173] (port=60078 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LRqPC-0003Ro-Ke for grub-devel@gnu.org; Tue, 27 Jan 2009 11:03:14 -0500 Received: from mail-ew0-f20.google.com ([209.85.219.20]:38496) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LRqPC-00052o-27 for grub-devel@gnu.org; Tue, 27 Jan 2009 11:03:14 -0500 Received: by ewy13 with SMTP id 13so1997198ewy.18 for ; Tue, 27 Jan 2009 08:03:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=z/A6jA1TxJykUUA04V18wNFibuNg7lF0dAsWVsJs5lE=; b=wh+IijamE7dVeHB7lMIlP+nLwDXP7FaWZdd8lNspqtxPRoRfoQbiflLI/M4aE6RErK zIwP20E2gEHwhJrLJ+OAe0oq7fk03sfwDyYUNHwgNJffZTyVaGfdi339s6+gH4V8MAgw xEOVbDDG6BMi1/29WHsQLnttI2zv8rEwg9IcQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=x5CoKeCFXisOA4FBVZTGvJS70pjSgx5K+X7pBKxm5VDBT1E1OQiVvnZpY1Fb+49PYV X9Uc913nMk8cbWdu+Zp2OcekJNekjxYqSV+a+pXFc6bfqFEv6k47pCFV65cvQPylBa8B sMJQKKQLBlsZarEB77+f/banU92coGOY3+llM= Received: by 10.86.27.9 with SMTP id a9mr147368fga.23.1233072190742; Tue, 27 Jan 2009 08:03:10 -0800 (PST) Received: from ?192.168.1.2? (108-141.79-83.cust.bluewin.ch [83.79.141.108]) by mx.google.com with ESMTPS id e20sm421174fga.53.2009.01.27.08.03.09 (version=SSLv3 cipher=RC4-MD5); Tue, 27 Jan 2009 08:03:09 -0800 (PST) Message-ID: <497F303B.30608@gmail.com> Date: Tue, 27 Jan 2009 17:03:07 +0100 From: phcoder User-Agent: Thunderbird 2.0.0.19 (X11/20090105) MIME-Version: 1.0 To: The development of GRUB 2 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Bugfix: no cursor on command line X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jan 2009 16:03:16 -0000 Testing grub I noticed this bug. Here is bugfix Vladimir 'phcoder' Serbinenko Index: normal/cmdline.c =================================================================== --- normal/cmdline.c (revision 1959) +++ normal/cmdline.c (working copy) @@ -148,6 +148,7 @@ { static char cmdline[GRUB_MAX_CMDLINE]; + grub_setcursor (1); grub_print_error (); grub_errno = GRUB_ERR_NONE; cmdline[0] = '\0';