From mboxrd@z Thu Jan 1 00:00:00 1970 From: random832@fastmail.us (random832@fastmail.us) Date: Fri, 17 Oct 2014 16:37:08 -0400 Subject: [TUHS] early cc variable and function names In-Reply-To: <20141017025242.GH6963@mcvoy.com> References: <20141017022913.7A77818C092@mercury.lcs.mit.edu> <20141017024049.GI17227@mercury.ccil.org> <20141017025242.GH6963@mcvoy.com> Message-ID: <1413578228.125790.180311153.48CF1319@webmail.messagingengine.com> On Thu, Oct 16, 2014, at 22:52, Larry McVoy wrote: > abc.st_size > > Huh, abc is a struct stat. > > I get that it was a bug and needed to be fixed but I wish that everyone > still pretended that it was one namespace, makes code so much easier to > read. I'm not sure what your design is that you're more than a screen away from either its declaration, a stat call, or the fact that it's got size _and_ mode _and_ mtime etc. And if you do that, why stop there? Why not require the type to be repeated to dereference any pointer? while(*x == 0) is x a pointer to int, to char, to another pointer, etc?