Skip to content

Commit 784071e

Browse files
authored
Merge pull request #49 from sharplispers/unify-packages
Unify packages
2 parents 0ab37cc + 53fd7a0 commit 784071e

File tree

12 files changed

+209
-209
lines changed

12 files changed

+209
-209
lines changed

clx.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
(defclass legacy-file (static-file) ())
3636

37-
(defsystem CLX
37+
(defsystem #:clx
3838
:description "An implementation of the X Window System protocol in Lisp."
3939
:author "Texas Instruments Incorporated.
4040
Franz Inc, Berkeley, Ca.

demo/clclock.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
(defpackage "XCLCLOCK"
1+
(defpackage #:xlib-demo/clclock
22
(:use "CL")
33
(:export "CLOCK"))
44

5-
(in-package "XCLCLOCK")
5+
(in-package #:xlib-demo/clclock)
66

77
(defvar *display* (xlib:open-default-display))
88
(defvar *screen* (xlib:display-default-screen *display*))

demo/clipboard.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@
5959
;;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
6060
;;; DEALINGS IN THE SOFTWARE.
6161

62-
(defpackage "CLIPBOARD"
62+
(defpackage #:xlib-demo/clipboard
6363
(:use "CL" "XLIB")
6464
(:export "MAIN"))
6565

66-
(in-package "CLIPBOARD")
66+
(in-package #:xlib-demo/clipboard)
6767

6868
;;; This is "traditional" XLIB style; I don't really know if it's the
6969
;;; best way -- in developing this program, style of XLIB programming

demo/clx-demos.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
;;; This file should be portable to any valid Common Lisp with CLX -- DEC 88.
77
;;;
88

9-
(defpackage :demos (:use :common-lisp)
9+
(defpackage #:xlib-demo/demos (:use :common-lisp)
1010
(:export do-all-demos demo))
1111

12-
(in-package :demos)
12+
(in-package :xlib-demo/demos)
1313

1414

1515
;;;; Graphic demos wrapper macro.

0 commit comments

Comments
 (0)