emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lexicons


From: Teemu Likonen
Subject: Re: lexicons
Date: Fri, 02 Aug 2013 07:53:54 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Lars Magne Ingebrigtsen [2013-08-01 23:57:24 +02:00] wrote:

> When writing Common Lisp, I'm glad that I don't have to read and write
> foo:bar constantly, but I'm annoyed that I can't call my logging
> function in foo for `log', because that's a reserved word from the CL
> package.

In Common Lisp you can control the symbols in your own packages. For the
annoyance:

    (shadow 'log)

or

    (defpackage :my-package
      (:use :cl)
      (:shadow :log))

Attachment: pgpisJJfVdHSD.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]