Author: chromatic
Date: Sun Aug 17 13:26:18 2008
New Revision: 30284

Modified:
   trunk/docs/pdds/draft/pdd08_keys.pod
   trunk/docs/pdds/pdd09_gc.pod
   trunk/docs/pdds/pdd23_exceptions.pod
   trunk/docs/pdds/pdd27_multiple_dispatch.pod

Log:
[PDD] Fixed PDD linewrapping at 78 characters, per codingstd test.

Modified: trunk/docs/pdds/draft/pdd08_keys.pod
==============================================================================
--- trunk/docs/pdds/draft/pdd08_keys.pod        (original)
+++ trunk/docs/pdds/draft/pdd08_keys.pod        Sun Aug 17 13:26:18 2008
@@ -100,9 +100,9 @@
 
 =item Todo
 
-Need discussion on whether C<EXCEPTION_OUT_OF_BOUNDS> is a good exception for 
this, or
-whether something else should be used. It's really a compiler screw-up, since
-code which indexes a non-aggregate shouldn't be generated.
+Need discussion on whether C<EXCEPTION_OUT_OF_BOUNDS> is a good exception for
+this, or whether something else should be used. It's really a compiler
+screw-up, since code which indexes a non-aggregate shouldn't be generated.
 
 =back
 

Modified: trunk/docs/pdds/pdd09_gc.pod
==============================================================================
--- trunk/docs/pdds/pdd09_gc.pod        (original)
+++ trunk/docs/pdds/pdd09_gc.pod        Sun Aug 17 13:26:18 2008
@@ -451,9 +451,10 @@
 =item C<PObj * (*get_free_object) (Interp *, Small_Object_Pool*)>
 
 Get a free object from the pool. This function returns one free object from
-the given pool and removes that object from the pool's free list. PObject flags
-are returned clear, except flags that are used by the garbage collector itself,
-if any. If the pool is a buffer header pool all other object memory is zeroed.
+the given pool and removes that object from the pool's free list. PObject
+flags are returned clear, except flags that are used by the garbage collector
+itself, if any. If the pool is a buffer header pool all other object memory
+is zeroed.
 
 =item C<void (*add_free_object) (Interp *, Small_Object_Pool *, PObj *);>
 

Modified: trunk/docs/pdds/pdd23_exceptions.pod
==============================================================================
--- trunk/docs/pdds/pdd23_exceptions.pod        (original)
+++ trunk/docs/pdds/pdd23_exceptions.pod        Sun Aug 17 13:26:18 2008
@@ -112,8 +112,8 @@
 If this exception is not handled, it results in Parrot returning an error
 indication and the stringification of I<MESSAGE> to its embedding environment.
 When running standalone, this means writing the stringification of I<MESSAGE>
-to standard error and executing the standard Parrot function C<Parrot_exit>, to
-shut down the interpreter cleanly.
+to standard error and executing the standard Parrot function C<Parrot_exit>,
+to shut down the interpreter cleanly.
 
 =item B<exit [ I<EXITCODE> ]>
 

Modified: trunk/docs/pdds/pdd27_multiple_dispatch.pod
==============================================================================
--- trunk/docs/pdds/pdd27_multiple_dispatch.pod (original)
+++ trunk/docs/pdds/pdd27_multiple_dispatch.pod Sun Aug 17 13:26:18 2008
@@ -29,7 +29,8 @@
 
 =over 4
 
-=item - Parrot supports multiple dispatch in opcodes and user-defined routines.
+=item - Parrot supports multiple dispatch in opcodes and user-defined
+routines.
 
 =item - A single dispatch system supports MMD in both contexts.
 
@@ -39,8 +40,8 @@
 =item - For opcodes, the dispatch system is merely extensible, allowing users
 to define alternates with their own types.
 
-=item - Dispatch considers both low-level (register) types and high-level (PMC)
-types, as well as inherited and composed types.
+=item - Dispatch considers both low-level (register) types and high-level
+(PMC) types, as well as inherited and composed types.
 
 =item - Dispatch does not consider argument values. HLLs with dispatch systems
 that do consider argument values will implement their own pluggable matching.
@@ -119,7 +120,8 @@
 function calls C<Parrot_mmd_sort_candidate_list> from the public MMD API, but
 may be changed to call C<Parrot_mmd_invoke>.
 
-=item set_integer_keyed_int, set_number_keyed_int, set_string_keyed_int 
[deprecated]
+=item set_integer_keyed_int, set_number_keyed_int, set_string_keyed_int
+[deprecated]
 
 Throw an exception, as an integer, float, or string value is not a Sub or NCI
 sub. (Masks the vtable functions inherited from ResizablePMCArray.)

Reply via email to