~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/idstack.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: idstack.c 8062 2007-06-19 05:45:58Z leonardo $ */
 
14
/* $Id: idstack.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* Implementation of dictionary stacks */
16
16
#include "ghost.h"
17
17
#include "idict.h"
198
198
 
199
199
/* Set the cached values computed from the top entry on the dstack. */
200
200
/* See idstack.h for details. */
201
 
private const ref_packed no_packed_keys[2] =
 
201
static const ref_packed no_packed_keys[2] =
202
202
{packed_key_deleted, packed_key_empty};
203
203
void
204
204
dstack_set_top(dict_stack_t * pds)