From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <3C765DEA.5040102@noos.fr> From: Philippe Anel User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.8) Gecko/20020209 MIME-Version: 1.0 To: 9fans <9fans@cse.psu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [9fans] Acid bug ? Date: Fri, 22 Feb 2002 16:04:10 +0100 Topicbox-Message-UUID: 542f0e78-eaca-11e9-9e20-41e7f4b1d025 Hi, According to the Acid Manual, The supported format characters are : -------------------------------------------------------cut-here---------------------- Formats ... b print byte in "hexadecimal". .... -------------------------------------------------------cut-here---------------------- But in /sys/src/cmd/acid/buildin.c, we have in the function "void patom(char type, Store *res)" : -------------------------------------------------------cut-here---------------------- switch(res->fmt) { ... case 'b': Bprint(bout, "%3d", (int)res->ival&0xff); break; ... } -------------------------------------------------------cut-here---------------------- Do you know a good way to add extensions to the builtin functions of acid ? (without modifing the acid sources) Philippe,