From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu From: "Sam" Date: Sat, 28 Dec 2002 22:29:31 -0500 Subject: [9fans] buglet fix Message-ID: Topicbox-Message-UUID: 38d1900a-eacb-11e9-9e20-41e7f4b1d025 For the "look('/') opens more than one window" buglet. term% diff look.old look.c 637c637 < if(k>0 && t->file->name[k-1] == '/') --- > if(k>1 && t->file->name[k-1] == '/') Why are we eliding the final '/' anyway? Surely we're not worried about saving space ... Sam