~ubuntu-branches/ubuntu/trusty/guile-2.0/trusty

« back to all changes in this revision

Viewing changes to libguile/hashtab.c

  • Committer: Package Import Robot
  • Author(s): Rob Browning
  • Date: 2012-02-04 11:33:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120204113328-op7l4os5fo5f8mm3
Tags: 2.0.5+1-1
* Incorporate upstream version 2.0.5.

* Delete 0001-Fix-the-SRFI-60-copy-bit-documentation.patch,
  0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch, and
  0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2003, 2004, 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
2
 
 * 
 
1
/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2006,
 
2
 *   2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
 
3
 *
3
4
 * This library is free software; you can redistribute it and/or
4
5
 * modify it under the terms of the GNU Lesser General Public License
5
6
 * as published by the Free Software Foundation; either version 3 of
394
395
  else if (SCM_HASHTABLE_DOUBLY_WEAK_P (exp))
395
396
    scm_puts ("doubly-weak-", port);
396
397
  scm_puts ("hash-table ", port);
 
398
  scm_uintprint (SCM_UNPACK (exp), 16, port);
 
399
  scm_putc (' ', port);
397
400
  scm_uintprint (SCM_HASHTABLE_N_ITEMS (exp), 10, port);
398
401
  scm_putc ('/', port);
399
402
  scm_uintprint (SCM_SIMPLE_VECTOR_LENGTH (SCM_HASHTABLE_VECTOR (exp)),