Re: KVM mice issues

2003-03-24 Thread Alexey Zelkin
hi, Yep. In order to avoid moused(8) getting something crazy (after console switch) I just forced psm reset after synchronization error detection. It can be achieved by changing changing of PSM_SYNCERR_THRESHOLD1 define from 20 to 0 (in file sys/isa/psm.c). Please try to do it and let me know

CFR: [Fwd: generalized \' flag support for vfprintf() (for both decimal and float numbers)]

2002-04-20 Thread Alexey Zelkin
hi, Constructive comments are welcome! - Forwarded message from Alexey Zelkin [EMAIL PROTECTED] - From: Alexey Zelkin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: generalized \' flag support for vfprintf() (for both decimal and float numbers) hi, Heh, just finished

Germany trip

2002-03-14 Thread Alexey Zelkin
Folks, I'll be visiting Germany for next week. My primary targets are Hannover (for CeBIT show), Trier (and possibly Amsterdam, not Germany though, but... :-). Because of this trip I'll be rarely available at e-mail. If you will be experiencing any problems with my recent locale/stdtime MFCs

CFR: NLS build infrastructure ...

2002-02-14 Thread Alexey Zelkin
hi, I've investigated NetBSD's infrastructure used to build/install NLS files and based on their ideas wrote small additional include file for /usr/share/mk. I'm not make(1) guru and expect to have there some bogons. Since we have now two consumers of NLS catalogs in tree (tcsh and ee) I've

CFR: printf grouping support for floats (%'f)

2002-02-12 Thread Alexey Zelkin
hi, This patch fixes *printf() family routines to correctly handle grouping for both decimals and floats. Current version of printf() supports grouping for decimals only. Yes, I know it looks like more hackish way, so other opinions are welcome! Since printf() is widely used and quite

Re: wc* function

2001-12-05 Thread Alexey Zelkin
hi, On Wed, Dec 05, 2001 at 03:28:29PM +0300, Sergey Matveychuk wrote: According to mail archive, work on supporting wide-char functions was in progress some time but then stopped. May be is there some results of this work somewhere? Continue will better than beginning from scratch. Check

Re: wc* function

2001-12-05 Thread Alexey Zelkin
On Thu, Dec 06, 2001 at 12:04:31AM +0300, Sergey Matveychuk wrote: Check out Citrus[1] project's CVS Repo. They have quite promising implementation of w* functions. Also as I recall correctly some amount of w* functions are already commited in. [1] http://citurs.bsdclub.org Link is

Re: whois(1) patch for review

2001-06-22 Thread Alexey Zelkin
hi, On Fri, Jun 22, 2001 at 03:37:17AM +0200, Dag-Erling Smorgrav wrote: Arg.. I wish you had contacted me before doing this work. From looking at your patch, your using an old copy of my work. The newest one is available at: http://testbed.q9media.net/freebsd/whois.patch and will be

whois(1) patch for review

2001-06-21 Thread Alexey Zelkin
hi, I have made few modifications to whois(1) to shut up BDECFLAGS warnings, cleanup code, and add new features. Main aim of this patch is to add flexibility to people who want to point whois(1) to non-deault whois server, i.e. have to type -h server name many times. It adds new command line

Re: whois(1) patch for review

2001-06-21 Thread Alexey Zelkin
hi, On Thu, Jun 21, 2001 at 04:25:46PM +0300, Peter Pentchev wrote: I have made few modifications to whois(1) to shut up BDECFLAGS warnings, cleanup code, and add new features. [snip] Resume: with this patch included to add new country's whois server we'll need to add only one

Re: FreeBSD Monthly Development Status Report, June 2001

2001-06-14 Thread Alexey Zelkin
hi, On Wed, Jun 13, 2001 at 09:47:52PM -0500, Chris Costello wrote: If this ends up being the case (i.e., there's an issue approx. once a month), how about archiving them on the web site? We used to have a newsletter, but it quickly grew stale. This sounds like something developers

Re: custom release

2000-02-28 Thread Alexey Zelkin
hi, JP How much disk space is it necessary to have the entire CVS repository ? Litle more than 800 mb. JP The idea is to build a custom release. You need 1,5-2 Gig. -- /* Alexey Zelkin[EMAIL PROTECTED]*/ /* Tavric National University [EMAIL PROTECTED

Re: Terminal colors

1999-12-25 Thread Alexey Zelkin
mode on) and `so' (standout mode on) directives. Contact me directly if you need more comments. -- /* Alexey Zelkin[EMAIL PROTECTED]*/ /* Tavric National University [EMAIL PROTECTED] */ /* http://www.ccssu.crimea.ua/~phantom [EMAIL PROTECTED

handbook require major update

1999-11-08 Thread Alexey Zelkin
to submit any new sub-chapters, sections, paragraphs or fixes to existent ones as simple text or SGML patches to -doc maillist. Thanks you very much! -- /* Alexey Zelkin[EMAIL PROTECTED]*/ /* Tavric National University [EMAIL PROTECTED] */ /* http

Re: loader security problem

1999-11-08 Thread Alexey Zelkin
:) I even did not try to look to lilo's sources and I can't answer such _complex_ question :) -- /* Alexey Zelkin[EMAIL PROTECTED]*/ /* Tavric National University [EMAIL PROTECTED] */ /* http://www.ccssu.crimea.ua/~phantom [EMAIL PROTECTED] */ To Unsubsc

Re: X11/C++ question

1999-10-27 Thread Alexey Zelkin
all the method */ TDR myclass::mymethod(arg1); TDR } TDR } Looks good except one point -- mymethod should be static, i.e. static void mymethod (...) { ... } TDR Then, you register "callback_function" as the Xt/Motif callback. TDR I've at least "h