From owner-cvs-all Mon Jul 2 17:29:30 2001 Delivered-To: cvs-all@freebsd.org Received: from earth.backplane.com (earth-nat-cw.backplane.com [208.161.114.67]) by hub.freebsd.org (Postfix) with ESMTP id 085B537B401; Mon, 2 Jul 2001 17:29:25 -0700 (PDT) (envelope-from dillon@earth.backplane.com) Received: (from dillon@localhost) by earth.backplane.com (8.11.3/8.11.2) id f630TK825496; Mon, 2 Jul 2001 17:29:20 -0700 (PDT) (envelope-from dillon) Date: Mon, 2 Jul 2001 17:29:20 -0700 (PDT) From: Matt Dillon Message-Id: <200107030029.f630TK825496@earth.backplane.com> To: Alfred Perlstein Cc: Dima Dorfman , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/mountd mountd.c References: <20010702185739.X84523@sneakerz.org> <20010703000646.13F1A3E28@bazooka.unixfreak.org> <20010702191342.Y84523@sneakerz.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :#include : :int main() :{ : : printf("foo\ :bar\n"); : return 1; :} : :It doesn't matter much, but I wanted to see if you realized that. : :-- :-Alfred Perlstein [alfred@freebsd.org] ANSI string concatenation: int main() { puts( "This is line1\n" "This is line2\n" "This is line3\n" "This " "is " "line4\n" ); return 1; } For strings. Nobody in his right mind tries to break a word (or a string these days) in the middle with backslash+NL. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message