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 42 43 44 45 46
|
This is the README file for
ELIB
-
The Emacs Lisp Library
Version 1.0
Inge Wallin <inge@lysator.liu.se>
Per Cederqvist <ceder@lysator.liu.se>
================================================================
This is the source directory for the GNU emacs lisp library Elib
version 1.0. Elib is designed to be for Elisp programs what libg++ is
for C++ programs: a collection of useful routines which don't have to
be reinvented each time a new program is written.
Elib contains code for:
- container data structures (queues, stacks, AVL trees, etc)
- string handling functions missing in standard emacs
- minibuffer handling functions missing in standard emacs
- routines for handling lists of so called cookies in a buffer.
Information about how to install the library and the documentation is
in the file INSTALL. Licensing terms are in the file COPYING.
Further documentation is in the Texinfo file elib.texi.
Please send bug reports, suggestions and comments to
elib-maintainers@lysator.liu.se.
Known bugs:
+ The documentation could be better. It lacks an index, among
other things.
+ The stack-m and stack-f should probably both (provide 'stack).
stack-m.el should maybe be renamed stack.el, and stack-f.el
should maybe only be used while debugging. We are still
thinking about this. Suggestions are welcome.
+ The cookie package has a number of inconsistencies regarding
handling of (point).
Enjoy!
Linkping 10-dec-1995
Inge Wallin
Per Cederqvist
|