ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* beta: warning messages
@ 2009-03-19 14:19 Peter Rolf
  2009-03-19 14:32 ` Wolfgang Schuster
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Peter Rolf @ 2009-03-19 14:19 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi Hans,

looks my knowledge of TeX is holey like a Leerdammer. Can you tell me 
why you fire a warning for already defined, non-global  allocated registers?
Some of them make sense here but even a grouped (and local allocated) 
register gives such a warning.

warning        : \count \OLDpdfcompresslevel is already defined (\relax 
it first)

\def\disablePDFcompression%
  {\bgroup
%   \let\OLDpdfcompresslevel\relax
   \newcount\OLDpdfcompresslevel
   \OLDpdfcompresslevel\pdfcompresslevel
   \pdfcompresslevel\zerocount\relax}
\def\allowPDFcompression%
  {\pdfcompresslevel\OLDpdfcompresslevel\egroup}


- Peter
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:19 beta: warning messages Peter Rolf
@ 2009-03-19 14:32 ` Wolfgang Schuster
  2009-03-19 14:55   ` Peter Rolf
  2009-03-19 14:36 ` Hans Hagen
  2009-03-19 14:38 ` Hans Hagen
  2 siblings, 1 reply; 7+ messages in thread
From: Wolfgang Schuster @ 2009-03-19 14:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 19.03.2009 um 15:19 schrieb Peter Rolf:

> Hi Hans,
>
> looks my knowledge of TeX is holey like a Leerdammer. Can you tell  
> me why you fire a warning for already defined, non-global  allocated  
> registers?
> Some of them make sense here but even a grouped (and local  
> allocated) register gives such a warning.

Because it's nonsense what you do, just assign the value to your
counter inside of the group and will be keeped local.

\newcount\OLDpdfcompresslevel

\def\disablePDFcompression
   {\bgroup
    \OLDpdfcompresslevel\pdfcompresslevel
    \pdfcompresslevel\zerocount\relax}

\def\allowPDFcompression
   {\pdfcompresslevel\OLDpdfcompresslevel\egroup}

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:19 beta: warning messages Peter Rolf
  2009-03-19 14:32 ` Wolfgang Schuster
@ 2009-03-19 14:36 ` Hans Hagen
  2009-03-19 15:01   ` Peter Rolf
  2009-03-19 14:38 ` Hans Hagen
  2 siblings, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2009-03-19 14:36 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Peter Rolf wrote:
> Hi Hans,
> 
> looks my knowledge of TeX is holey like a Leerdammer. Can you tell me 
> why you fire a warning for already defined, non-global  allocated 
> registers?
> Some of them make sense here but even a grouped (and local allocated) 
> register gives such a warning.
> 
> warning        : \count \OLDpdfcompresslevel is already defined (\relax 
> it first)
> 
> \def\disablePDFcompression%
>  {\bgroup
> %   \let\OLDpdfcompresslevel\relax
>   \newcount\OLDpdfcompresslevel
>   \OLDpdfcompresslevel\pdfcompresslevel
>   \pdfcompresslevel\zerocount\relax}
> \def\allowPDFcompression%
>  {\pdfcompresslevel\OLDpdfcompresslevel\egroup}

first of all, there is a command \nopdfcompression so you don't need the 
hackery

then, \newcount is global and the latest releases of context catch 
redefinitions so:

- either move the \newcount outside the macro
- or relax it first (which will spoil a counter then)

(the whole allocator has been rewritten and is no longer doing it in the 
traditional tex way, at least not with respect to where things end up; 
cleaner this way)

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:19 beta: warning messages Peter Rolf
  2009-03-19 14:32 ` Wolfgang Schuster
  2009-03-19 14:36 ` Hans Hagen
@ 2009-03-19 14:38 ` Hans Hagen
  2 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2009-03-19 14:38 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Peter Rolf wrote:
> Hi Hans,
> 
> looks my knowledge of TeX is holey like a Leerdammer. Can you tell me 
> why you fire a warning for already defined, non-global  allocated 
> registers?
> Some of them make sense here but even a grouped (and local allocated) 
> register gives such a warning.
> 
> warning        : \count \OLDpdfcompresslevel is already defined (\relax 
> it first)
> 
> \def\disablePDFcompression%
>  {\bgroup
> %   \let\OLDpdfcompresslevel\relax
>   \newcount\OLDpdfcompresslevel

actually, i could probably make a global as well as a local registre 
pool (thr trick is in avoiding stack buildup)

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:32 ` Wolfgang Schuster
@ 2009-03-19 14:55   ` Peter Rolf
  2009-03-19 15:01     ` Hans Hagen
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Rolf @ 2009-03-19 14:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Wolfgang Schuster schrieb:
>
> Am 19.03.2009 um 15:19 schrieb Peter Rolf:
>
>> Hi Hans,
>>
>> looks my knowledge of TeX is holey like a Leerdammer. Can you tell me 
>> why you fire a warning for already defined, non-global  allocated 
>> registers?
>> Some of them make sense here but even a grouped (and local allocated) 
>> register gives such a warning.
>
> Because it's nonsense what you do, just assign the value to your
> counter inside of the group and will be keeped local.
>
*guilty* in this point...

and the past has show, that i'm a repeat offender ;)
 
> \newcount\OLDpdfcompresslevel
>
> \def\disablePDFcompression
>   {\bgroup
>    \OLDpdfcompresslevel\pdfcompresslevel
>    \pdfcompresslevel\zerocount\relax}
>
> \def\allowPDFcompression
>   {\pdfcompresslevel\OLDpdfcompresslevel\egroup}
>
> Wolfgang
>
> ___________________________________________________________________________________ 
>
> If your question is of interest to others as well, please add an entry 
> to the Wiki!
>
> maillist : ntg-context@ntg.nl / 
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________ 
>
>


-- 
  "Es ist doch ein Trost,
   das Geldgier manchmal blöd macht."

             - Kottan in "Kottan ermittelt", Folge 9: "Die Einteilung" -



___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:55   ` Peter Rolf
@ 2009-03-19 15:01     ` Hans Hagen
  0 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2009-03-19 15:01 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Peter Rolf wrote:

>> \newcount\OLDpdfcompresslevel
>>
>> \def\disablePDFcompression
>>   {\bgroup
>>    \OLDpdfcompresslevel\pdfcompresslevel
>>    \pdfcompresslevel\zerocount\relax}
>>
>> \def\allowPDFcompression
>>   {\pdfcompresslevel\OLDpdfcompresslevel\egroup}
>>
>> Wolfgang

there are:

\def\nopdfcompression     {\pdfobjcompresslevel\zerocount 
\pdfcompresslevel\zerocount}

\def\maximumpdfcompression{\pdfobjcompresslevel\plusone 
\pdfcompresslevel\plusnine }

\def\normalpdfcompression {\pdfobjcompresslevel\plusone 
\pdfcompresslevel\plusthree}

with

\normalpdfcompression

being default



-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: beta: warning messages
  2009-03-19 14:36 ` Hans Hagen
@ 2009-03-19 15:01   ` Peter Rolf
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Rolf @ 2009-03-19 15:01 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hans Hagen schrieb:
> Peter Rolf wrote:
>> Hi Hans,
>>
>> looks my knowledge of TeX is holey like a Leerdammer. Can you tell me 
>> why you fire a warning for already defined, non-global  allocated 
>> registers?
>> Some of them make sense here but even a grouped (and local allocated) 
>> register gives such a warning.
>>
>> warning        : \count \OLDpdfcompresslevel is already defined 
>> (\relax it first)
>>
>> \def\disablePDFcompression%
>>  {\bgroup
>> %   \let\OLDpdfcompresslevel\relax
>>   \newcount\OLDpdfcompresslevel
>>   \OLDpdfcompresslevel\pdfcompresslevel
>>   \pdfcompresslevel\zerocount\relax}
>> \def\allowPDFcompression%
>>  {\pdfcompresslevel\OLDpdfcompresslevel\egroup}
>
> first of all, there is a command \nopdfcompression so you don't need 
> the hackery
>
well, the code is messed up this way, because i had also disabled 
\pdfobjcompresslevel in a prior version.
after i found out, that you can't change it at runtime (only once at the 
very beginning of the document) i removed it. the rest of the macro was 
unchanged.

> then, \newcount is global and the latest releases of context catch 
> redefinitions so:
>
> - either move the \newcount outside the macro
> - or relax it first (which will spoil a counter then)
>
ok, will do so. thanks Hans and Wolfgang!

> (the whole allocator has been rewritten and is no longer doing it in 
> the traditional tex way, at least not with respect to where things end 
> up; cleaner this way)
>
> Hans
>
>
> -----------------------------------------------------------------
>                                           Hans Hagen | PRAGMA ADE
>               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>                                              | www.pragma-pod.nl
> -----------------------------------------------------------------
> ___________________________________________________________________________________ 
>
> If your question is of interest to others as well, please add an entry 
> to the Wiki!
>
> maillist : ntg-context@ntg.nl / 
> http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________ 
>
>


-- 
  "Es ist doch ein Trost,
   das Geldgier manchmal blöd macht."

             - Kottan in "Kottan ermittelt", Folge 9: "Die Einteilung" -



___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-03-19 15:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-19 14:19 beta: warning messages Peter Rolf
2009-03-19 14:32 ` Wolfgang Schuster
2009-03-19 14:55   ` Peter Rolf
2009-03-19 15:01     ` Hans Hagen
2009-03-19 14:36 ` Hans Hagen
2009-03-19 15:01   ` Peter Rolf
2009-03-19 14:38 ` Hans Hagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).