Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watmath!clyde!rutgers!ukma!gatech!hao!husc6!cmcl2!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.UUCP Newsgroups: comp.unix.wizards Subject: Re: indent bug Message-ID: <6667@brl-smoke.ARPA> Date: Thu, 12-Nov-87 11:15:05 EST Article-I.D.: brl-smok.6667 Posted: Thu Nov 12 11:15:05 1987 Date-Received: Sat, 14-Nov-87 14:33:17 EST References: <10266@brl-adm.ARPA> <9313@mimsy.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 11 In article <9313@mimsy.UUCP> chris@mimsy.UUCP (Chris Torek) writes: >... That is, `i =+ 1' will not compile, though `i += 1' will. i =+ 1; should compile but be inequivalent to i += 1; the former should assign the value 1 to variable `i' while the latter should increment the contents of `i'.