cl-named-readtables 20201221.gitc5689a4-1 source package in Ubuntu

Changelog

cl-named-readtables (20201221.gitc5689a4-1) unstable; urgency=medium

  * New upstream snapshot

 -- Sébastien Villemot <email address hidden>  Wed, 23 Dec 2020 13:59:07 +0100

Upload details

Uploaded by:
Debian Common Lisp Team
Uploaded to:
Sid
Original maintainer:
Debian Common Lisp Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
cl-named-readtables_20201221.gitc5689a4-1.dsc 2.2 KiB 4d9381175c25ab626e9f344d17f73aa67a6fb1c6d281ba08504ef911d786f5ae
cl-named-readtables_20201221.gitc5689a4.orig.tar.xz 23.1 KiB 897523240467c25482d4aab2cece64e4795afbabd65930ccc8d29c43df740abf
cl-named-readtables_20201221.gitc5689a4-1.debian.tar.xz 3.3 KiB e3dd232ac6c4624859c87f3942db568aad906c256fff30365397b24c45bc7f53

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.