From 452b0bb21912b56b862409c50f15cb2acd4ea120 Mon Sep 17 00:00:00 2001
From: Hellseher <sharlatanus@gmail.com>
Date: Sat, 14 Nov 2015 00:24:46 +0000
Subject: [A] extra links

    Links :
          : CLiki
          : Awesome Common Lisp
          : COMMON LISP A Gentle Introduction to Symbolic Computation
          : Common-Lisp.net
---
 common-lisp.html.markdown | 7 +++++++
 1 file changed, 7 insertions(+)

(limited to 'common-lisp.html.markdown')

diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown
index 63183c1e..13f0023e 100644
--- a/common-lisp.html.markdown
+++ b/common-lisp.html.markdown
@@ -615,8 +615,15 @@ nil                  ; for false - and the empty list
 ## Further Reading
 
 [Keep moving on to the Practical Common Lisp book.](http://www.gigamonkeys.com/book/)
+[A Gentle Introduction to...](https://www.cs.cmu.edu/~dst/LispBook/book.pdf)
 
 
+## Extra Info
+
+[CLiki](http://www.cliki.net/)
+[common-lisp.net](https://common-lisp.net/)
+[Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl)
+
 ## Credits.
 
 Lots of thanks to the Scheme people for rolling up a great starting
-- 
cgit v1.2.3


From b20abcb791cf3d2b0e7274fb300c6d0e7b791da1 Mon Sep 17 00:00:00 2001
From: Hellseher <sharlatanus@gmail.com>
Date: Sat, 14 Nov 2015 00:33:00 +0000
Subject: [E] styling links

---
 common-lisp.html.markdown | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'common-lisp.html.markdown')

diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown
index 13f0023e..2b1f5de4 100644
--- a/common-lisp.html.markdown
+++ b/common-lisp.html.markdown
@@ -614,15 +614,15 @@ nil                  ; for false - and the empty list
 
 ## Further Reading
 
-[Keep moving on to the Practical Common Lisp book.](http://www.gigamonkeys.com/book/)
-[A Gentle Introduction to...](https://www.cs.cmu.edu/~dst/LispBook/book.pdf)
+*   [Keep moving on to the Practical Common Lisp book.](http://www.gigamonkeys.com/book/)
+*   [A Gentle Introduction to...](https://www.cs.cmu.edu/~dst/LispBook/book.pdf)
 
 
 ## Extra Info
 
-[CLiki](http://www.cliki.net/)
-[common-lisp.net](https://common-lisp.net/)
-[Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl)
+*   [CLiki](http://www.cliki.net/)
+*   [common-lisp.net](https://common-lisp.net/)
+*   [Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl)
 
 ## Credits.
 
-- 
cgit v1.2.3


From 2f85645c9f988663c2f584fb23392d873fc3c8e9 Mon Sep 17 00:00:00 2001
From: Anton Davydov <don.mist@gmail.com>
Date: Wed, 9 Dec 2015 00:03:06 +0300
Subject: [common-lisp/en] Fix code in examples

---
 common-lisp.html.markdown | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'common-lisp.html.markdown')

diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown
index 2b1f5de4..9a23bc26 100644
--- a/common-lisp.html.markdown
+++ b/common-lisp.html.markdown
@@ -339,7 +339,7 @@ nil                  ; for false - and the empty list
 
 ;; The () in the above is the list of arguments for the function
 (defun hello (name)
-   (format nil "Hello, ~a " name))
+   (format nil "Hello, ~a" name))
 
 (hello "Steve") ; => "Hello, Steve"
 
@@ -430,7 +430,7 @@ nil                  ; for false - and the empty list
 (defun walker (n)
   (if (zerop n)
       :walked
-      (walker (1- n))))
+      (walker (- n 1))))
 
 (walker 5) ; => :walked
 
-- 
cgit v1.2.3