git.fiddlerwoaroof.com
Browse code

Change exports to reflect symbols used externally

fiddlerwoaroof authored on 16/02/2017 20:10:26
Showing 5 changed files
... ...
@@ -1,3 +1,4 @@
1 1
 .*.sw?
2 2
 .[#]*
3 3
 [#]*#
4
+feed-archiver
... ...
@@ -5,4 +5,4 @@
5 5
  #+sbcl save-lisp-and-die
6 6
  "feed-archiver"
7 7
  #+sbcl :executable  #+ccl :prepend-kernel t
8
- #+sbcl :toplevel #+ccl :toplevel-function #'alimenta.feed-archive::command-line-main)
8
+ #+sbcl :toplevel #+ccl :toplevel-function #'alimenta.feed-archive:command-line-main)
... ...
@@ -1,7 +1,7 @@
1 1
 (defpackage :alimenta.feed-archive.encoders
2 2
   (:use :cl :alexandria :serapeum :fw.lu :alimenta.feed-archive.tools)
3 3
   (:shadowing-import-from :alimenta.feed-archive.tools :->)
4
-  (:export :skip-item))
4
+  (:export :skip-item :the-condition :the-feed :feed-error))
5 5
 
6 6
 (in-package :alimenta.feed-archive.encoders)
7 7
 
... ...
@@ -1,6 +1,7 @@
1 1
 (defpackage :alimenta.feed-archive
2 2
   (:use :cl :alexandria :serapeum :fw.lu :alimenta.feed-archive.tools)
3
-  (:shadowing-import-from :alimenta.feed-archive.tools :->))
3
+  (:shadowing-import-from :alimenta.feed-archive.tools :->)
4
+  (:export #:init-feeds #:archive-feeds #:command-line-main))
4 5
 
5 6
 (in-package :alimenta.feed-archive)
6 7
 
... ...
@@ -29,7 +29,7 @@
29 29
     (yason:encode-object feed)))
30 30
 
31 31
 (defmethod yason:encode-slots progn ((item alimenta:item))
32
-  (with-accessors ((author alimenta::author)
32
+  (with-accessors ((author alimenta:author)
33 33
 		   (content alimenta:content)
34 34
 		   (date alimenta:date)
35 35
 		   (id alimenta:id)