I.e. I would prefer
(require 'externalpackage)
(define-namespace thispackage-
(defvar ::foo "yow") ; foo is explicitly local, and
; since it is short, an extra
; "::" does not make much
; difference
(externalpackage-frobnicate ::foo) ; frobnicate is external
)
to this, which is how the package works currently: (require 'externalpackage)
(define-namespace thispackage-
(defvar foo "yow") ; Some things like defvar
; magically don’t need ::
(::externalpackage-frobnicate foo) ; Ugly, and I need to do this
; for *every* non-local symbol,
; making them even longer!
)Sometimes, when you avoid solutions for political reasons, you end up with something worse for political reasons. <sigh> Sometimes the world is frustrating.