Why the cl: prefix for in-package

I always use the cl: package prefix for the in-package form that is usually the first form in every Common Lisp source file. The main reason is so that the person reading the code can be sure that the value of the special variable *package* when the file is compiled or loaded is not important and does not influence the meaning of the in-package form.


robert.strandh@gmail.com