Mon Jul 20 07:07:16 UTC 2009  pix@kepibu.org
  * Some org-mode syntaxisms
diff -rN -u old-portaCL/notes.org new-portaCL/notes.org
--- old-portaCL/notes.org	2013-06-18 03:19:05.000000000 +0000
+++ new-portaCL/notes.org	2013-06-18 03:19:05.000000000 +0000
@@ -1,4 +1,4 @@
-PortaCL: Easing the Creation of CL Portability Libraries
+#+TITLE: PortaCL: Easing the Creation of CL Portability Libraries
 
 * Rationale
 
@@ -60,7 +60,7 @@
 
 Defines a feature test which shall return true if the given feature expressions apply.
 
-see feature-tests.lisp for usage examples.
+see [[http://repo.kepibu.org/portaCL/feature-tests.lisp][feature-tests.lisp]] for usage examples.
 
 ** Macro: feature-cond ([feature-conditional] [clause]+)*
 
@@ -102,8 +102,8 @@
     may not be entirely my bug...)
   * Constructs similar to the ones below will result in an incorrect
     package-error:
-      (list #+(or) #+package:notexported a b c)
-      (list #+(or) #+notapackage:foo a b c)
+      :(list #+(or) #+package:notexported a b c)
+      :(list #+(or) #+notapackage:foo a b c)
     NOTE: this bug is shared by the standard readers of at least SBCL,
     Clisp, and Lispworks; but not by Allegro.