~ubuntu-branches/ubuntu/precise/luatex/precise

« back to all changes in this revision

Viewing changes to src/texk/web2c/cwebdir/common.w

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-07-07 11:01:13 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080707110113-1y7lam37zbbb7bbt
Tags: 0.28.0-1
* two new upstream releases, see the respective ANNOUCE files
* add luasocket license statement to debian/copyright
* activate the pdfluatex format
* prepare for latex based formats
  - add the ini files from TeX Live
  - add debian/formats file
  - adjust dh_installtex incantation
  the problem is that luatex dies when loading ukrhypmp.tex from 
  texlive-lang-cyrillic, but we don't want to conflict with it by now.
* policy 3.8.0, rename README.Debian-source to README.source, and add
  notes about quilt usage
* disable patch fix-pwd-inclusion (it was from svn)

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
some of \.{CWEB}'s routines use the fact that it is safe to refer to
151
151
|*(limit+2)| without overstepping the bounds of the array.
152
152
 
153
 
@d buf_size 100 /* for \.{CWEAVE} and \.{CTANGLE} */
 
153
@d buf_size 1000 /* for \.{CWEAVE} and \.{CTANGLE} */
154
154
@d longest_name 1000
155
155
@d long_buf_size (buf_size+longest_name) /* for \.{CWEAVE} */
156
156
@d xisspace(c) (isspace(c)&&((unsigned char)c<0200))
412
412
the |cur_file| has changed, we tell \.{CTANGLE} to print this
413
413
information in the \CEE/ file by means of the |print_where| flag.
414
414
 
415
 
@d max_sections 2000 /* number of identifiers, strings, section names;
 
415
@d max_sections 10239 /* number of identifiers, strings, section names;
416
416
  must be less than 10240 */
417
417
 
418
418
@<Defin...@>=
586
586
the |byte_mem| array (the address where the name begins) and other data.
587
587
A |name_pointer| variable is a pointer into |name_dir|.
588
588
 
589
 
@d max_bytes 90000 /* the number of bytes in identifiers,
 
589
@d max_bytes 1000000 /* the number of bytes in identifiers,
590
590
  index entries, and section names; must be less than $2^{24}$ */
591
 
@d max_names 4000 /* number of identifiers, strings, section names;
 
591
@d max_names 10239 /* number of identifiers, strings, section names;
592
592
  must be less than 10240 */
593
593
 
594
594
@<Definitions that...@>=
639
639
\.{CWEAVE} and \.{CTANGLE}.  If there is no match for the identifier,
640
640
it is inserted into the table.
641
641
 
642
 
@d hash_size 353 /* should be prime */
 
642
@d hash_size 8501 /* should be prime */
643
643
 
644
644
@<Defini...@>=
645
645
typedef name_pointer *hash_pointer;