|
From: | Eric Ludlam |
Subject: | Re: library/package filename prefixes |
Date: | Mon, 4 May 2020 08:13:24 -0400 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 |
On 5/3/20 11:08 PM, Richard Stallman wrote:
[[[ To any NSA and FBI agents reading my email: please consider ]]] [[[ whether defending the US Constitution against all enemies, ]]] [[[ foreign or domestic, requires you to follow Snowden's example. ]]] > > Are there any libraries in Emacs or GNU ELPA > > which currently use a 2-letter prefix? In your list, some of the files do use a two-letter name prefix, but others do not. lisp/cedet/srecode/el.el does not. Neither does lisp/cedet/semantic/sb.el.
Hi,Regarding prefixes, the above 2 files are not on the path. To require them, you would need:
(require 'srecode/el) (require 'semantic/sb)and internally, their prefixes are related to the parent package, ie: srecode- and semantic-
The files are organized this way because the old file names of some neighboring files where too long in the old scheme, such as "srecode-dictionary.el"
Eric
[Prev in Thread] | Current Thread | [Next in Thread] |