lisp revision 103373
1
2#------------------------------------------------------------------------------
3# lisp:  file(1) magic for lisp programs
4#
5# various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com)
6
7# This is a guess, but a good one.
80	string	;;			Lisp/Scheme program text
9
10# Emacs 18 - this is always correct, but not very magical.
110	string	\012(			Emacs v18 byte-compiled Lisp data
12# Emacs 19+ - ver. recognition added by Ian Springer
13# Also applies to XEmacs 19+ .elc files; could tell them apart if we had regexp
14# support or similar - Chris Chittleborough <cchittleborough@yahoo.com.au>
150	string	;ELC			
16>4	byte	>19			
17>4	byte    <32			Emacs/XEmacs v%d byte-compiled Lisp data
18
19# Files produced by CLISP Common Lisp From: Bruno Haible <haible@ilog.fr>
200	string	(SYSTEM::VERSION\040'	CLISP byte-compiled Lisp program text
210	long	0x70768BD2		CLISP memory image data
220	long	0xD28B7670		CLISP memory image data, other endian
23
24# Files produced by GNU gettext
250	long	0xDE120495		GNU-format message catalog data
260	long	0x950412DE		GNU-format message catalog data
27
28#.com and .bin for MIT scheme 
290	string	\372\372\372\372	MIT scheme (library?)
30