Bug 170380

Summary: [patch] add missing Pp to dup(2) in errors section
Product: Documentation Reporter: Enji Cooper <ngie>
Component: Books & ArticlesAssignee: Niclas Zeising <zeising>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Enji Cooper freebsd_committer freebsd_triage 2012-08-05 00:30:01 UTC
A .Pp call is missing between error sections. Not really critical for humans; just a minor eyesore.

It does confuse a script I have for parsing manpages though.

Fix: Patch attached with submission follows:
Comment 1 Niclas Zeising freebsd_committer freebsd_triage 2012-08-05 00:41:38 UTC
Responsible Changed
From-To: freebsd-doc->zeising

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-08-21 17:35:29 UTC
Author: zeising (ports committer)
Date: Tue Aug 21 16:35:14 2012
New Revision: 239503
URL: http://svn.freebsd.org/changeset/base/239503

Log:
  Add missing .Pp macro.
  
  PR:		docs/170380
  Submitted by:	Garrett Cooper <yaneurabeya@gmail.com>
  Approved by:	joel (mentor)

Modified:
  head/lib/libc/sys/dup.2

Modified: head/lib/libc/sys/dup.2
==============================================================================
--- head/lib/libc/sys/dup.2	Tue Aug 21 16:18:11 2012	(r239502)
+++ head/lib/libc/sys/dup.2	Tue Aug 21 16:35:14 2012	(r239503)
@@ -138,6 +138,7 @@ is not a valid active descriptor
 .It Bq Er EMFILE
 Too many descriptors are active.
 .El
+.Pp
 The
 .Fn dup2
 system call fails if:
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 3 Niclas Zeising freebsd_committer freebsd_triage 2012-08-21 17:37:36 UTC
State Changed
From-To: open->closed

Committed. Thanks!