Fixed gratitious typo
[glrepl.git] / package.lisp
blob715614e23c890437621383902eb1ce1fbc10f930
2 (defpackage :glrepl
3 (:use :cl :iterate :alexandria :trivial-gray-streams)
4 (:export #:*bitmap-width*
5 #:*bitmap-height*
6 #:*font-pathname*
7 #:*font-data*
8 #:*font-images*
9 #:*glwindow*
10 #:*console-render-debug-fn*
11 #:*font-images*
12 #:*console*
13 #:with-opengl
14 #:name-of
15 #:make-font
16 #:destroy-font
17 #:rgba-image
18 #:glrepl-font
19 #:bitmap-height-of
20 #:bitmap-width-of
21 #:pathname-of
22 #:chain-of
23 #:images-of
24 #:glrepl-window
25 #:glrepl-window-line
26 #:current-line
27 #:current-result-line
28 #:current-line-as-string
29 #:current-cursor
30 #:glrepl-window-mark
31 #:add-line
32 #:cursor-up
33 #:cursor-down
34 #:cursor-left
35 #:cursor-right
36 #:cursor-column
37 #:add-char
38 #:add-string
39 #:del-char-left
40 #:del-char-right
41 #:set-mark
42 #:texture-width-of
43 #:texture-height-of
44 #:text-height-of
45 #:text-width-of
46 #:win-height-of
47 #:win-width-of
48 #:font-of
49 #:mark-of
50 #:cursor-line-of
51 #:top-line-of
52 #:lines-of
53 #:kills-of
54 #:window-pixel-atxy
55 #:viewport
56 #:add-to-history
57 #:previous-history
58 #:next-history
59 #:render-string
60 #:render-console
61 #:console-key-callback
62 #:console-char-callback
63 #:console-eval
64 #:pixel
65 #:update-image
66 #:pixval))
68 (in-package :glrepl)