From owner-svn-src-all@freebsd.org Fri Mar 2 16:47:14 2018 Return-Path: Delivered-To: svn-src-all@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 AEE56F333DC for ; Fri, 2 Mar 2018 16:47:14 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: from mail-lf0-f49.google.com (mail-lf0-f49.google.com [209.85.215.49]) (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 0858D6B03F for ; Fri, 2 Mar 2018 16:47:13 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: by mail-lf0-f49.google.com with SMTP id g72so14240425lfg.3 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=r8Renjq6Cv1MkMN5bSS50ENXbahwzARrqMuoRIePBAOkH3fTBpGjbXasnVC19K87mM insWzW4xqo9TmiB/P7WD5SGYtICneL2eBymqwtPYjKhDvYfmlsW9QiwKs8UqOQGJwIHV lZoGQcTVgm3NhdroRDZ1wqEqQnNuIhRqeBUSr+lyAZsXSARSpI8BdKDyESvp7FFTsZra yiJWcqAphOgUlCZZFi4WrBAP9aHTW4P/84VG7Rv3IioE8FlTgxWznVYRE3HlJV5cVVv0 8vzbduA2sGUUOvs6fGqgFnwDC3C8SRKf+yXjRnvZ+ZQY3JkYuki9vHW57G+/bRhmkfJD c6vQ== X-Gm-Message-State: APf1xPDCU6lfxYNAXXyQc4RlVHNMWiHPxN6KaH58lgPgR0H7A28oHAVa 9YH18HmyoaxQ+prtIcnuNDHhw07I X-Google-Smtp-Source: AG47ELsQwEeBrVFIwxinNsxVa2iNZHFVDV+a/Xf4H93IdqJUbEr5P1R5dJ8fACzI/5dNhOujUCr9dw== X-Received: by 10.46.64.131 with SMTP id r3mr4563463lje.52.1520009231274; Fri, 02 Mar 2018 08:47:11 -0800 (PST) Received: from mail-lf0-f50.google.com (mail-lf0-f50.google.com. [209.85.215.50]) by smtp.gmail.com with ESMTPSA id u129sm1414690lff.72.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-f50.google.com with SMTP id l191so14187089lfe.1 for ; Fri, 02 Mar 2018 08:47:11 -0800 (PST) X-Received: by 10.46.114.26 with SMTP id n26mt5151017ljc.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-all@freebsd.org X-Mailman-Version: 2.1.25 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: 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.