[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: getting abbrev table objects given a string with the same name
From: |
Thien-Thi Nguyen |
Subject: |
Re: getting abbrev table objects given a string with the same name |
Date: |
22 Jun 2004 19:47:33 +0200 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 |
Benjamin Rutt <rutt.4+news@osu.edu> writes:
> how can I get an abbrev table, given a string with the same name.
this expression doesn't answer your question directly,
but in understanding it you will find the answer anyway:
(let ((name (concat "describe" "-" "function")))
(eval `(,(intern name) ',(intern name))))
thi