1(Original author based on manpage) 2Chris D. Peterson, MIT X Consortium 3commands.c 4util.c 5xedit.c 6xedit.h 7 8 9------------------------------------------------------------------------ 10Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 11xedit: 12hook.c 13hash.c 14ispell.c 15lisp.c 16options.c 17tags.c 18util.h 19 20xedit lisp interface: 21lisp/bytecode.c 22lisp/bytecode.h 23lisp/compile.c 24lisp/core.c 25lisp/core.h 26lisp/debugger.c 27lisp/debugger.h 28lisp/format.c 29lisp/format.h 30lisp/internal.h 31lisp/io.c 32lisp/io.h 33lisp/hash.c 34lisp/hash.h 35lisp/helper.c 36lisp/helper.h 37lisp/lisp.c 38lisp/lisp.h 39lisp/math.c 40lisp/math.h 41lisp/mathimp.c 42lisp/package.c 43lisp/package.h 44lisp/pathname.c 45lisp/pathname.h 46lisp/private.h 47lisp/read.c 48lisp/read.h 49lisp/regex.c 50lisp/regex.h 51lisp/require.c 52lisp/require.h 53lisp/stream.c 54lisp/stream.h 55lisp/string.c 56lisp/string.h 57lisp/struct.c 58lisp/struct.h 59lisp/time.c 60lisp/time.h 61lisp/write.c 62lisp/write.h 63lisp/xedit.c 64lisp/xedit.h 65 66bignum math library: 67lisp/mp/mp.h 68lisp/mp/mpr.c 69lisp/mp/mpi.c 70lisp/mp/mp.c 71 72command line lisp interpreter: 73lisp/lsp.c 74 75regex library: 76lisp/re/re.c 77lisp/re/re.h 78lisp/re/reo.c 79lisp/re/rep.h 80lisp/re/rec.c 81lisp/re/tests.c 82lisp/re/tests.txt 83 84source files to test the lisp interpreter: 85lisp/test/widgets.lsp 86lisp/test/list.lsp 87lisp/test/hello.lsp 88lisp/test/regex.lsp 89lisp/test/stream.lsp 90lisp/test/math.lsp 91 92lisp binary modules: 93lisp/modules/psql.c 94lisp/modules/x11.c 95lisp/modules/xaw.c 96lisp/modules/xt.c 97 98lisp source modules: 99lisp/modules/indent.lsp 100lisp/modules/lisp.lsp 101lisp/modules/syntax.lsp 102lisp/modules/xedit.lsp 103 104lisp syntax highlight and indentation rules definitions: 105lisp/modules/progmodes/c.lsp 106lisp/modules/progmodes/html.lsp 107lisp/modules/progmodes/imake.lsp 108lisp/modules/progmodes/lisp.lsp 109lisp/modules/progmodes/make.lsp 110lisp/modules/progmodes/man.lsp 111lisp/modules/progmodes/patch.lsp 112lisp/modules/progmodes/rpm.lsp 113lisp/modules/progmodes/sgml.lsp 114lisp/modules/progmodes/sh.lsp 115lisp/modules/progmodes/xconf.lsp 116lisp/modules/progmodes/xlog.lsp 117lisp/modules/progmodes/xrdb.lsp 118 119 120------------------------------------------------------------------------ 121Files required when compiling with xprint support: 122 123(Based on Copyright notice) 124Roland Mainz <roland.mainz@nrubsig.org> 125xedit: 126print.c 127print.h 128printdialog.c 129printdialog.h 130printdialogprivates.h 131 132 133------------------------------------------------------------------------ 134Files required for systems that don't have the required calls in the 135standard libraries: 136 137(Based on Copyright notice) 138Constantin S. Svintsoff 139realpath.c 140 141(No author information, using CVS tag) 142David Dawes <dawes@XFree86.Org> 143strcasecmp.c 144