From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3359 invoked from network); 27 Jun 1997 19:19:58 -0000 Received: from euclid.skiles.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 27 Jun 1997 19:19:58 -0000 Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id PAA25742; Fri, 27 Jun 1997 15:02:58 -0400 (EDT) Resent-Date: Fri, 27 Jun 1997 15:02:58 -0400 (EDT) Message-ID: From: Amol Deshpande To: zsh-workers@math.gatech.edu, "'Peter Stephenson'" Subject: RE: FAQ, German Umlauts (patch) Date: Fri, 27 Jun 1997 12:06:57 -0700 X-Priority: 3 X-Mailer: Internet Mail Service (5.0.1458.49) Resent-Message-ID: <"Kebk52.0.9I6.Xv0jp"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/3319 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Peter, Should this also be applicable to 3.0.x ? Also, would printing eight-bit characters be affected by inittyptab ? thanks, -amol > *** Doc/Zsh/options.yo.p8 Wed Apr 30 09:18:38 1997 > --- Doc/Zsh/options.yo Thu Jun 26 18:33:51 1997 > *************** > *** 622,627 **** > --- 622,634 ---- > tt(trap) and > tt(unset). > ) > + pindex(PRINT_EIGHT_BIT) > + cindex(exit status, printing) > + item(tt(PRINT_EIGHT_BIT) (tt(-1)))( > + Print eight bit characters literally in completion lists, etc. > + This option is not necessary if your system correctly returns the > + printability of eight bit characters (see manref(ctype)(3)). > + ) > pindex(PRINT_EXIT_VALUE) > cindex(exit status, printing) > item(tt(PRINT_EXIT_VALUE) (tt(-1)))( > *** Src/options.c.p8 Thu Jun 26 18:17:28 1997 > --- Src/options.c Thu Jun 26 18:14:26 1997 > *************** > *** 144,149 **** > --- 144,150 ---- > {NULL, "overstrike", 0, > OVERSTRIKE}, > {NULL, "pathdirs", 0, PATHDIRS}, > {NULL, "posixbuiltins", OPT_EMULATE|OPT_BOURNE, > POSIXBUILTINS}, > + {NULL, "printeightbit", 0, > PRINTEIGHTBIT}, > {NULL, "printexitvalue", 0, > PRINTEXITVALUE}, > {NULL, "privileged", OPT_SPECIAL, > PRIVILEGED}, > {NULL, "promptcr", OPT_ALL, PROMPTCR}, > *** Src/utils.c.p8 Thu Jun 26 18:17:18 1997 > --- Src/utils.c Thu Jun 26 18:39:11 1997 > *************** > *** 175,180 **** > --- 175,182 ---- > if (isprint(c)) > goto done; > if (c & 0x80) { > + if (isset(PRINTEIGHTBIT)) > + goto done; > *s++ = '\\'; > *s++ = 'M'; > *s++ = '-'; > *** Src/zsh.h.p8 Tue Jun 24 09:09:11 1997 > --- Src/zsh.h Fri Jun 27 09:35:25 1997 > *************** > *** 1035,1040 **** > --- 1035,1041 ---- > OVERSTRIKE, > PATHDIRS, > POSIXBUILTINS, > + PRINTEIGHTBIT, > PRINTEXITVALUE, > PRIVILEGED, > PROMPTCR, > > > -- > Peter Stephenson Tel: +49 33762 77366 > WWW: http://www.ifh.de/~pws/ Fax: +49 33762 77413 > Deutsches Elektronen-Synchrotron --- Institut fuer Hochenergiephysik > Zeuthen > DESY-IfH, 15735 Zeuthen, Germany. >