newLISP 10.0.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News newLISP 10.0.2 (Default branch)
# 1  
Old 03-09-2009
newLISP 10.0.2 (Default branch)

newLISP is a Lisp-like, general-purpose scripting language. It has all the magic of traditional Lisp, but is easier to learn and use. newLISP is friendly, fast, and small. Most of the functions you will ever need are already built in. License: GNU General Public License v3 Changes:
The new "read-utf8" function reads UTF-8 characters from files. Treatment of the status header response line in CGI files by newLISP server mode has changed and is documented in the "Code Patterns" document. The "directory?" function is now insensitive to trailing slashes on Win32. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
pgmtolispm(1)                                                 General Commands Manual                                                pgmtolispm(1)

NAME
pgmtolispm - convert a portable graymap into Lisp Machine format SYNOPSIS
pgmtolispm [pgmfile] DESCRIPTION
Reads a portable graymap as input. Produces a Lisp Machine bitmap as output. This is the file format read by the tv:read-bit-array-file function on TI Explorer and Symbolics lisp machines. Given a pgm (instead of a pbm) a multi-plane image will be output. This is probably not useful unless you have a color lisp machine. Multi-plane bitmaps on lisp machines are color; but the lispm image file format does not include a color map, so we must treat it as a graymap instead. This is unfortunate. SEE ALSO
lispmtopgm(1), pgm(5) BUGS
Output width is always rounded up to the nearest multiple of 32; this might not always be what you want, but it probably is (arrays which are not modulo 32 cannot be passed to the Lispm BITBLT function, and thus cannot easily be displayed on the screen). No color. AUTHOR
Copyright (C) 1991 by Jamie Zawinski and Jef Poskanzer. 06 March 1990 pgmtolispm(1)