Date: Mon, 5 Nov 2012 17:42:50 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r242618 - head/usr.bin/less Message-ID: <201211051742.qA5HgoNo048511@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: delphij Date: Mon Nov 5 17:42:50 2012 New Revision: 242618 URL: http://svnweb.freebsd.org/changeset/base/242618 Log: Fix build with clang: properly terminate comment even in #if 0 blocks. Submitted by: dim Modified: head/usr.bin/less/defines.h Modified: head/usr.bin/less/defines.h ============================================================================== --- head/usr.bin/less/defines.h Mon Nov 5 16:40:42 2012 (r242617) +++ head/usr.bin/less/defines.h Mon Nov 5 17:42:50 2012 (r242618) @@ -184,7 +184,7 @@ /* * Sizes of various buffers. */ -#if 0 /* old sizes for small memory machines +#if 0 /* old sizes for small memory machines */ #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211051742.qA5HgoNo048511>