From: espen Date: Tue, 2 Jan 2007 18:39:42 +0000 (+0000) Subject: Ignoring internal symbols when scanning libraries for type initializers X-Git-Tag: clg-0-93~215 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/7d04d907f6cd52733178b037410f520d0a31881d?hp=79c092274f6c55a9903cf02215c109a8be362be3 Ignoring internal symbols when scanning libraries for type initializers --- diff --git a/glib/gtype.lisp b/glib/gtype.lisp index ab0918f..b14831b 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)