cl-named-readtables 20180121.git985b162-1 source package in Ubuntu

Changelog

cl-named-readtables (20180121.git985b162-1) unstable; urgency=medium

  * Initial release. (Closes: #917787)

 -- Sébastien Villemot <email address hidden>  Sun, 30 Dec 2018 12:03:54 +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

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
cl-named-readtables_20180121.git985b162-1.dsc 2.2 KiB fdbdeceb41118a0d7ac50fae834f90805ea80b25fcfbdfd6e310094b05d3d950
cl-named-readtables_20180121.git985b162.orig.tar.xz 26.1 KiB f9fd64bf860db57e7640babb16198984ae420b153498098e5cbc7734792e9c1d
cl-named-readtables_20180121.git985b162-1.debian.tar.xz 3.1 KiB 28154e0bd85bd8b8496e85dd995627f0c4b24bd238572b4c4adbdce3e2220bad

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.