From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25259 invoked from network); 3 Dec 2000 23:51:25 -0000 Received: from sunsite.dk (HELO sunsite.auc.dk) (130.225.51.30) by ns1.primenet.com.au with SMTP; 3 Dec 2000 23:51:25 -0000 Received: (qmail 10619 invoked by alias); 3 Dec 2000 23:28:52 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13216 Received: (qmail 10612 invoked from network); 3 Dec 2000 23:28:51 -0000 Date: Sun, 3 Dec 2000 18:28:46 -0500 From: Clint Adams To: zsh-workers@sunsite.auc.dk Subject: PATCH: tc/ti docs Message-ID: <20001203182846.A24724@dman.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i minimal documentation for 13215. Index: Doc/Zsh/.distfiles =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/.distfiles,v retrieving revision 1.3 diff -u -r1.3 .distfiles --- Doc/Zsh/.distfiles 2000/09/04 21:13:08 1.3 +++ Doc/Zsh/.distfiles 2000/12/03 23:18:34 @@ -6,8 +6,8 @@ mod_clone.yo mod_compctl.yo mod_complete.yo mod_complist.yo mod_computil.yo mod_deltochar.yo mod_example.yo mod_files.yo mod_mapfile.yo mod_mathfunc.yo mod_parameter.yo mod_sched.yo - mod_stat.yo mod_zftp.yo mod_zle.yo mod_zleparameter.yo mod_zutil.yo - mod_zprof.yo mod_zpty.yo + mod_stat.yo mod_termcap.yo mod_terminfo.yo mod_zftp.yo mod_zle.yo + mod_zleparameter.yo mod_zutil.yo mod_zprof.yo mod_zpty.yo modules.yo modlist.yo modmenu.yo manmodmenu.yo options.yo params.yo prompt.yo redirect.yo restricted.yo seealso.yo zftpsys.yo zle.yo contrib.yo Index: Doc/Zsh/builtins.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/builtins.yo,v retrieving revision 1.21 diff -u -r1.21 builtins.yo --- Doc/Zsh/builtins.yo 2000/10/05 08:41:36 1.21 +++ Doc/Zsh/builtins.yo 2000/12/03 23:18:53 @@ -258,12 +258,6 @@ these escape sequences. In the latter case, tt(-e) flag can be used to enable them. ) -findex(echotc) -cindex(termcap string, printing) -item(tt(echotc) var(cap) [ var(arg) ... ])( -Output the termcap string corresponding to the capability -var(cap), with optional arguments. -) findex(emulate) cindex(compatibility, sh) cindex(compatibility, ksh) @@ -943,6 +937,8 @@ until it receives a tt(SIGCONT). Unless the tt(-f) option is given, this will refuse to suspend a login shell. ) +module(termcap)(zsh/termcap) +module(terminfo)(zsh/terminfo) findex(test) xitem(tt(test) [ var(arg) ... ]) item(tt([) [ var(arg) ... ] tt(]))( Index: Doc/Zsh/mod_termcap.yo =================================================================== RCS file: mod_termcap.yo diff -N mod_termcap.yo --- /dev/null Tue May 5 13:32:27 1998 +++ mod_termcap.yo Sun Dec 3 15:18:53 2000 @@ -0,0 +1,13 @@ +COMMENT(!MOD!zsh/termcap +Interface to the termcap database. +!MOD!) +The tt(zsh/termcap) module makes available one builtin command: + +startitem() +findex(echotc) +cindex(termcap string, printing) +item(tt(echotc) var(cap) [ var(arg) ... ])( +Output the termcap string corresponding to the capability +var(cap), with optional arguments. +) +enditem() Index: Doc/Zsh/mod_terminfo.yo =================================================================== RCS file: mod_terminfo.yo diff -N mod_terminfo.yo --- /dev/null Tue May 5 13:32:27 1998 +++ mod_terminfo.yo Sun Dec 3 15:18:53 2000 @@ -0,0 +1,23 @@ +COMMENT(!MOD!zsh/terminfo +Interface to the terminfo database. +!MOD!) +The tt(zsh/terminfo) module makes available one builtin command: + +startitem() +findex(echoti) +cindex(terminfo string, printing) +item(tt(echoti) var(cap))( +Output the terminfo string corresponding to the capability +var(cap). +) +enditem() + +The tt(zsh/terminfo) module makes available one parameter: + +startitem() +vindex(terminfo) +item(tt(terminfo))( +An associative array that maps terminfo capability names to +their values. +) +enditem() Index: Src/Modules/.distfiles =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Modules/.distfiles,v retrieving revision 1.1.1.9 diff -u -r1.1.1.9 .distfiles --- Src/Modules/.distfiles 2000/02/11 19:46:52 1.1.1.9 +++ Src/Modules/.distfiles 2000/12/03 23:18:53 @@ -8,6 +8,8 @@ mathfunc.mdd mathfunc.c parameter.mdd parameter.c stat.mdd stat.c + termcap.mdd termcap.c + terminfo.mdd terminfo.c zftp.mdd zftp.c zprof.mdd zprof.c zutil.mdd zutil.c