From owner-svn-src-head@freebsd.org Fri Mar 2 16:47:14 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACEC4F333DB for ; Fri, 2 Mar 2018 16:47:14 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: from mail-lf0-f54.google.com (mail-lf0-f54.google.com [209.85.215.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 092B06B040 for ; Fri, 2 Mar 2018 16:47:14 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: by mail-lf0-f54.google.com with SMTP id m69so14219282lfe.8 for ; Fri, 02 Mar 2018 08:47:13 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:cc; bh=tE5BMzzolCPFWRDUxQIjhGytjdkyXnt4sMGkhe39KbQ=; b=ZV35Uas35s7uyYZac9P6sxTZF4WPeJOuQH+tc/f8Of/HF/fjaZhTM287NCBZR+SNE1 Dx1oSzXYAxJc3MqRXo8soQQd0/XWFNUQxSWSd0whYTpNiRvC0ic/oPwtZGaClFwHKdRK Iisg28jnymcq5iLTansMHh38naLieIL8XT/ZmWkprAUSaelerVtaOl9st9yr0I7bS6YQ kDTbF/dlH3OPSN2VM+ssOGczHN6pkBKRnPRbwQUjQZ5TicuGKuXTsumIkphoofmbOIz+ Vg4o9DGQmQ/tvm8S32r/FraPjGSYjJ3azLAKKrf3GTTyuHEMxiyawfHTZIt8wC4b0IGW mCzw== X-Gm-Message-State: AElRT7EPKiR2JJ22HYX0Sm7dXzveBddzSryv166OWGlSpoT4jXxX88ly jWwRPVF+ZjnWhfLtkKZRAL9FkPXo X-Google-Smtp-Source: AG47ELtlOZu5X3ezyO2E8p4nfXn5gtxxc33vbDE1G/L243FhCsAYCSJtkWozf018D8PWgOyhflPmsw== X-Received: by 10.46.93.148 with SMTP id v20mr4204639lje.34.1520009231362; Fri, 02 Mar 2018 08:47:11 -0800 (PST) Received: from mail-lf0-f53.google.com (mail-lf0-f53.google.com. [209.85.215.53]) by smtp.gmail.com with ESMTPSA id 77sm1384784ljz.67.2018.03.02.08.47.11 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 02 Mar 2018 08:47:11 -0800 (PST) Received: by mail-lf0-f53.google.com with SMTP id v9so14142230lfa.11 for ; Fri, 02 Mar 2018 08:47:11 -0800 (PST) X-Received: by 10.46.114.26 with SMTP id n26mt5151018ljc.74.1520009231020; Fri, 02 Mar 2018 08:47:11 -0800 (PST) MIME-Version: 1.0 Received: by 10.46.54.1 with HTTP; Fri, 2 Mar 2018 08:46:50 -0800 (PST) In-Reply-To: <201803021631.w22GVN0x083117@repo.freebsd.org> References: <201803021631.w22GVN0x083117@repo.freebsd.org> From: Kyle Evans Date: Fri, 2 Mar 2018 10:46:50 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r330284 - head/stand/liblua Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2018 16:47:14 -0000 On Fri, Mar 2, 2018 at 10:31 AM, Kyle Evans wrote: > Author: kevans > Date: Fri Mar 2 16:31:23 2018 > New Revision: 330284 > URL: https://svnweb.freebsd.org/changeset/base/330284 > > Log: > liblua: Use putc instead of printf for printc > > printc does not need the features or the overhead of printf. It does not > take formatting strings, and it pipes the single string argument through an > "%s" format. > > Instead, use putc directly. This pipes the string through in its entirety as > a series of 'unsigned char's, generally straight to the console emulator. > > Discussed with: tsoome > FYI- This has been confirmed to fix a problem recently reported to -current by garga@ where the frames around the menu wouldn't draw properly on an EFI boot.