summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorckonstanski <carlos.konstanski@olo.com>2021-05-30 21:50:59 -0600
committerckonstanski <carlos.konstanski@olo.com>2021-05-30 21:50:59 -0600
commitb53bc020f5b52a31228fe4414de2f28a94690edb (patch)
treef50e49738dbecbb217ac7a02c6c1615ae0ab6039
parent4f289129590466c8147a53ca19f7a68196624adc (diff)
remove superfluous #s
-rw-r--r--org-ckons-http.asd6
-rw-r--r--src/html.lisp2
-rw-r--r--src/http.lisp2
3 files changed, 5 insertions, 5 deletions
diff --git a/org-ckons-http.asd b/org-ckons-http.asd
index 67ae851..2c67023 100644
--- a/org-ckons-http.asd
+++ b/org-ckons-http.asd
@@ -1,10 +1,10 @@
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
-(in-package #:cl)
+(in-package :cl)
-(defpackage #:org-ckons-http-system (:use #:cl #:asdf))
-(in-package #:org-ckons-http-system)
+(defpackage :org-ckons-http-system (:use :cl :asdf))
+(in-package :org-ckons-http-system)
(defmacro do-defsystem (&key name version maintainer author description long-description depends-on components)
`(defsystem ,name
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)))