[Nickle] nickle: Branch 'master' - 2 commits

Keith Packard keithp at keithp.com
Fri Nov 9 21:36:56 PST 2012


 README.release                         |    2 +-
 doc/tutorial/advanced/concurrency.sgml |    1 +
 doc/tutorial/intro/variables.sgml      |    1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 1e29f3df828ec68ca7b4556e9b1bb830c8afbb4b
Author: Keith Packard <keithp at keithp.com>
Date:   Fri Nov 9 21:35:40 2012 -0800

    tutorial: Close a couple of SGML tags
    
    nsgmls found a couple of unclosed tags which may make some versions
    of docbook tools unhappy.
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/doc/tutorial/advanced/concurrency.sgml b/doc/tutorial/advanced/concurrency.sgml
index e60da32..8d4bcbc 100644
--- a/doc/tutorial/advanced/concurrency.sgml
+++ b/doc/tutorial/advanced/concurrency.sgml
@@ -222,6 +222,7 @@ void signal ( semaphore s )
 <literal>wait</literal> merely decrements the count of <literal>s</literal>, which starts with the initial value specified by <literal>new</literal>.
 If the count, after the decrement, is positive, the thread continues to run; if it is negative, it blocks until the count becomes positive again.
 This will occur when one of the running threads calls <literal>signal</literal>, which increments the count of <literal>s</literal> and wakes up another thread if any are waiting.
+</para>
 </sect3>
 
 <sect3><title>Negative initial counts</title>
diff --git a/doc/tutorial/intro/variables.sgml b/doc/tutorial/intro/variables.sgml
index 5274baf..add93f2 100644
--- a/doc/tutorial/intro/variables.sgml
+++ b/doc/tutorial/intro/variables.sgml
@@ -298,6 +298,7 @@ separate key from value.  Eliding the key specifies the
 "default" value -- used to instantiate newly created elements in the hash.
 </para>
 
+</sect3>
 <sect3><title>Pointers</title>
 <para>
 Pointers hold a reference to a separate object; multiple pointers may point at the same object and changes to the referenced object are reflected both in the underlying object as well as in any other references to the same object.
commit b3e13a3f246956ade058332c6a1f02ea73d0b986
Author: Keith Packard <keithp at keithp.com>
Date:   Fri Nov 9 21:35:12 2012 -0800

    Fix release docs to use git log instead of git-log
    
    git-log disappeared a long time ago
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/README.release b/README.release
index 039cd0d..afd6550 100644
--- a/README.release
+++ b/README.release
@@ -12,7 +12,7 @@ important steps:
  
  4.	Update debian/changelog
 
-		git-log --pretty=oneline 2.<xx>..master
+		git log --pretty=oneline 2.<xx>..master
 		
  5.	Build the release
 


More information about the Nickle mailing list