summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/html.lisp2
-rw-r--r--src/http.lisp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/html.lisp b/src/html.lisp
index 331ebe4..5f93cae 100644
--- a/src/html.lisp
+++ b/src/html.lisp
@@ -6,7 +6,7 @@
(defpackage :org-ckons-http
(:use :cl))
-(in-package #:org-ckons-http)
+(in-package :org-ckons-http)
;;; XXX fix this, it's not correct
(defun html-reserved-p (c)
diff --git a/src/http.lisp b/src/http.lisp
index 891f730..2a4793a 100644
--- a/src/http.lisp
+++ b/src/http.lisp
@@ -1,7 +1,7 @@
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
-(in-package #:org-ckons-http)
+(in-package :org-ckons-http)
(defmacro with-cookie-jar (&rest body)
`(let ((cookie-jar (make-instance 'drakma:cookie-jar)))