cl-named-readtables 20200129.git5e72eca-1 source package in Ubuntu
Changelog
cl-named-readtables (20200129.git5e72eca-1) unstable; urgency=medium * New upstream snapshot * Bump S-V to 4.5.0 -- Sébastien Villemot <email address hidden> Fri, 07 Feb 2020 17:14:59 +0100
Upload details
- Uploaded by:
- Debian Common Lisp Team on 2020-02-07
- Uploaded to:
- Sid
- Original maintainer:
- Debian Common Lisp Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Groovy | release | on 2020-04-24 | universe | misc |
Focal | release | on 2020-02-08 | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
cl-named-readtables_20200129.git5e72eca-1.dsc | 2.2 KiB | f085bfa7b2474b75abe8ec69a5da066fd62cb54925f488da0a99656182b03559 |
cl-named-readtables_20200129.git5e72eca.orig.tar.xz | 26.1 KiB | 37ed4dc8d662bf7b817bfa04a8e747a8e5d3811ad734e7f6df228eb5ca8d6820 |
cl-named-readtables_20200129.git5e72eca-1.debian.tar.xz | 3.2 KiB | ef079597dfc16de1f3f92f2ba8c34e3c57be9dc42a38622f80915fb412817dbe |
Available diffs
No changes file available.
Binary packages built by this source
- cl-named-readtables: Common Lisp library that creates namespaces for named readtables
Named-Readtables is a library that provides a namespace for readtables akin to
the already-existing namespace of packages in Common Lisp. In particular:
.
- you can associate readtables with names, and retrieve readtables by names;
.
- you can associate source files with readtable names, and be sure that the
right readtable is active when compiling/loading the file;
.
- similarly, your development environment now has a chance to automatically
determine what readtable should be active while processing source forms on
interactive commands. (E.g. think of `C-c C-c` in Slime (yet to be done))
.
It follows that Named-Readtables is a facility for using readtables in
a localized way.
.
Additionally, it also attempts to become a facility for using
readtables in a modular way. In particular:
.
- it provides a macro to specify the content of a readtable at a glance;
.
- it makes it possible to use multiple inheritance between readtables.