[gs-cvs] rev 7153 - trunk/gs/src
ray at ghostscript.com
ray at ghostscript.com
Thu Nov 2 22:28:15 PST 2006
Author: ray
Date: 2006-11-02 22:28:15 -0800 (Thu, 02 Nov 2006)
New Revision: 7153
Modified:
trunk/gs/src/gsmisc.c
trunk/gs/src/zmisc.c
Log:
Fix some typo's editting blunders. No code change.
Modified: trunk/gs/src/gsmisc.c
===================================================================
--- trunk/gs/src/gsmisc.c 2006-11-03 05:45:05 UTC (rev 7152)
+++ trunk/gs/src/gsmisc.c 2006-11-03 06:28:15 UTC (rev 7153)
@@ -16,9 +16,9 @@
/****************************************************************************
- * This should global should be put into either gs_imager_state or gs_device,
+ * This global should be put into either gs_imager_state or gs_device,
* but the "plumbing" retrofit is more than we need for things that were
- * reviously compile time modifications. CPSI_mode will at least make these
+ * previously compile time modifications. CPSI_mode will at least make these
* dynamic (but NOT thread safe)!!!
****************************************************************************
*/
Modified: trunk/gs/src/zmisc.c
===================================================================
--- trunk/gs/src/zmisc.c 2006-11-03 05:45:05 UTC (rev 7152)
+++ trunk/gs/src/zmisc.c 2006-11-03 06:28:15 UTC (rev 7153)
@@ -30,12 +30,6 @@
#include "store.h"
/**********************************************************************/
-/*
- * a global, which we don't really like, but at least it is better
- * than a compile time #define, as in #USE_ADOBE_CMYK_RGB and allows
- * us to easily test with/without and not recompile.
- **********************************************************************
- */
/* <proc> bind <proc> */
inline private bool
@@ -367,13 +361,18 @@
}
/* There are a few cases where a customer/user might want CPSI behavior
- * instead of the GS default behavior. cmpy_to_rgb and Type 1 char fill
+ * instead of the GS default behavior. cmyk_to_rgb and Type 1 char fill
* method are two that have come up so far. This operator allows a PS
* program to control the behavior without needing to recompile
+ *
+ * While this would better if it were in some context 'state', we use
+ * a global, which we don't really like, but at least it is better
+ * than a compile time #define, as in #USE_ADOBE_CMYK_RGB and allows
+ * us to easily test with/without and not require recompilation.
*/
-/* <bool> .setCPSImode - */
extern bool CPSI_mode; /* not worth polluting a header file */
+/* <bool> .setCPSImode - */
private int
zsetCPSImode(i_ctx_t *i_ctx_p)
{
More information about the gs-cvs
mailing list