Changes between Initial Version and Version 1 of Ticket #396


Ignore:
Timestamp:
08/15/15 07:48:05 (8 years ago)
Author:
Mark Evenson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #396 – Description

    initial v1  
    11Zach pointed out <http://lispblog.xach.com/post/126287122718/syntax-for-reading-a-form-in-a-package>
    22
    3 {{{
    4 Allegro, GCL, SBCL, and possibly other implementations support a syntax that looks like this:
     3  Allegro, GCL, SBCL, and possibly other implementations support a syntax that looks like this:
    54
     5  {{{
    66foo::(bar 'baz 42)
     7}}}
    78
    8 A form like that is read as though you had written (foo::bar 'foo::baz 42). I use this syntax sometimes for Quicklisp operations that rely on ql-dist symbols, like installing all available Quicklisp projects:
     9  A form like that is read as though you had written (foo::bar 'foo::baz 42). I use this syntax sometimes for Quicklisp operations that rely on ql-dist symbols, like installing all available Quicklisp projects:
    910}}}
    1011