zsh-workers
 help / color / mirror / code / Atom feed
* Manpage names in Doc [w/ patch]
@ 2010-02-04 17:22 Benjamin R. Haskell
  2010-02-04 17:45 ` Bart Schaefer
  2010-02-04 17:46 ` Peter Stephenson
  0 siblings, 2 replies; 3+ messages in thread
From: Benjamin R. Haskell @ 2010-02-04 17:22 UTC (permalink / raw)
  To: zsh-workers

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1895 bytes --]

While looking up something about HIST_SUBST_PATTERN, I noticed a typo in 
the Zsh manual it referenced.  So, I looked for other wrong manpage 
names and found a couple.  Patch attached and inlined (What's the 
preference? I never remember).

Two are just typos, but for the first one, zshfunc.yo seems to be 
incorporated into zshmisc.

Found via:

perl -lnwe 'print $1 while /zmanref\(([^)]+)\)/g' Doc/**/*.yo | sort | uniq -c

-- 
Best,
Ben

diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 0a8038f..2aa0aff 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1923,7 +1923,7 @@ the same directory as the var(file).  The shell will load the compiled
 file instead of the normal function file when the function
 is autoloaded; see
 ifzman(\
-the section `Autoloading Functions' in zmanref(zshfunc)
+the section `Autoloading Functions' in zmanref(zshmisc)
 )\
 ifnzman(\
 noderef(Functions)
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo
index 254c35d..e0934ff 100644
--- a/Doc/Zsh/options.yo
+++ b/Doc/Zsh/options.yo
@@ -537,7 +537,7 @@ Substitutions using the tt(:s) and tt(:&) history modifiers are performed
 with pattern matching instead of string matching.  This occurs wherever
 history modifiers are valid, including glob qualifiers and parameters.
 See
-ifzman(the section Modifiers in zmanref(zshexp))\
+ifzman(the section Modifiers in zmanref(zshexpn))\
 ifnzman(noderef(Modifiers)).
 )
 pindex(IGNORE_BRACES)
diff --git a/Doc/Zsh/tcpsys.yo b/Doc/Zsh/tcpsys.yo
index d592f77..599335b 100644
--- a/Doc/Zsh/tcpsys.yo
+++ b/Doc/Zsh/tcpsys.yo
@@ -19,7 +19,7 @@ tt(zsh/net/tcp) module, the tt(zsh/zselect) module is used to implement
 timeouts on read operations.  For troubleshooting tips, consult the
 corresponding advice for the tt(zftp) functions described in
 ifzman(\
-zmanref(zshftpsys)
+zmanref(zshzftpsys)
 )\
 ifnzman(\
 noderef(Zftp Function System)

[-- Attachment #2: Type: TEXT/PLAIN, Size: 1491 bytes --]

diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 0a8038f..2aa0aff 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1923,7 +1923,7 @@ the same directory as the var(file).  The shell will load the compiled
 file instead of the normal function file when the function
 is autoloaded; see
 ifzman(\
-the section `Autoloading Functions' in zmanref(zshfunc)
+the section `Autoloading Functions' in zmanref(zshmisc)
 )\
 ifnzman(\
 noderef(Functions)
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo
index 254c35d..e0934ff 100644
--- a/Doc/Zsh/options.yo
+++ b/Doc/Zsh/options.yo
@@ -537,7 +537,7 @@ Substitutions using the tt(:s) and tt(:&) history modifiers are performed
 with pattern matching instead of string matching.  This occurs wherever
 history modifiers are valid, including glob qualifiers and parameters.
 See
-ifzman(the section Modifiers in zmanref(zshexp))\
+ifzman(the section Modifiers in zmanref(zshexpn))\
 ifnzman(noderef(Modifiers)).
 )
 pindex(IGNORE_BRACES)
diff --git a/Doc/Zsh/tcpsys.yo b/Doc/Zsh/tcpsys.yo
index d592f77..599335b 100644
--- a/Doc/Zsh/tcpsys.yo
+++ b/Doc/Zsh/tcpsys.yo
@@ -19,7 +19,7 @@ tt(zsh/net/tcp) module, the tt(zsh/zselect) module is used to implement
 timeouts on read operations.  For troubleshooting tips, consult the
 corresponding advice for the tt(zftp) functions described in
 ifzman(\
-zmanref(zshftpsys)
+zmanref(zshzftpsys)
 )\
 ifnzman(\
 noderef(Zftp Function System)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Manpage names in Doc [w/ patch]
  2010-02-04 17:22 Manpage names in Doc [w/ patch] Benjamin R. Haskell
@ 2010-02-04 17:45 ` Bart Schaefer
  2010-02-04 17:46 ` Peter Stephenson
  1 sibling, 0 replies; 3+ messages in thread
From: Bart Schaefer @ 2010-02-04 17:45 UTC (permalink / raw)
  To: zsh-workers

On Feb 4, 12:22pm, Benjamin R. Haskell wrote:
}
} Patch attached and inlined (What's the preference? I never remember).

Inlined shows up better in the list archives, as I recall.

Personally I don't mind attachments as long as they're labeled as
text/plain rather than as some nonstandard thing like text/x-diff.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Manpage names in Doc [w/ patch]
  2010-02-04 17:22 Manpage names in Doc [w/ patch] Benjamin R. Haskell
  2010-02-04 17:45 ` Bart Schaefer
@ 2010-02-04 17:46 ` Peter Stephenson
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Stephenson @ 2010-02-04 17:46 UTC (permalink / raw)
  To: zsh-workers

"Benjamin R. Haskell" wrote:
> While looking up something about HIST_SUBST_PATTERN, I noticed a typo in 
> the Zsh manual it referenced.  So, I looked for other wrong manpage 
> names and found a couple.  Patch attached and inlined (What's the 
> preference? I never remember).

Thanks.

I prefer inline patches if your mail system doesn't mangle them:
experience suggests anything to do with Microsoft is likely to ensure
plain text is messed up in some way or another (no matter how many
attempts you've made to tweak Outlook or Exchange).  Attachments are
always fine, however, in any case of doubt (patch even handles DOS line
endings, thought that's a bit baroque).

ps


Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-04 17:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-04 17:22 Manpage names in Doc [w/ patch] Benjamin R. Haskell
2010-02-04 17:45 ` Bart Schaefer
2010-02-04 17:46 ` Peter Stephenson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).