forked from franzinc/clim2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcl-verification.lisp
41 lines (35 loc) · 1.13 KB
/
excl-verification.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#+(version= 8 2)
(sys:defpatch
#+mswindows "climnt" #-mswindows "climxm" 2
"v1: Make CLIM loadable from clinit.cl again;
v2: Mac OS X specific fixes."
:type :system
:post-loadable t)
#+(version= 8 1)
(sys:defpatch
#+mswindows "climnt" #-mswindows "climxm" 5
"v1: full international font support;
v2: fix v1 for 8-bit Lisps;
v3: styled text drawing in 8-bit images, switching table orientation
when redisplaying;
v4: drawing rotated text in i18n, accepting pathnames containing delimiter
chars, completion of logical pathnames;
v5: Fix postscript, GC cursor, Windows text field bugs, speed up
internationalized text drawing on Motif."
:type :system
:post-loadable t)
;; See the file LICENSE for the full license governing this code.
;;
(in-package :sys)
#+ignore
(eval-when (compile)
(assert (member excl::*current-case-mode*
'(:case-insensitive-lower :case-insensitive-upper))))
(eval-when (compile load eval)
(pushnew :clim *features*)
(pushnew :clim-2 *features*)
(pushnew :clim-2.1 *features*)
(pushnew :silica *features*)
(pushnew :ansi-90 *features*))
(provide :clim)
(provide :climg)