From: espen Date: Tue, 2 Jan 2007 18:39:42 +0000 (+0000) Subject: Ignoring internal symbols when scanning libraries for type initializers X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/8672dc09872e5520bc77f0c465e10e924d93a516 Ignoring internal symbols when scanning libraries for type initializers --- diff --git a/glib/gtype.lisp b/glib/gtype.lisp index d6b1535..4b411e4 100644 --- a/glib/gtype.lisp +++ b/glib/gtype.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gtype.lisp,v 1.58 2006-08-31 20:40:56 espen Exp $ +;; $Id: gtype.lisp,v 1.59 2007-01-02 18:39:42 espen Exp $ (in-package "GLIB") @@ -227,6 +227,7 @@ (defun %find-types-in-library (pathname prefixes ignore) while line when (and symbol (> (length symbol) 9) + (not (char= (char symbol 0) #\_)) (or (not prefixes) (some #'(lambda (prefix)