1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
|
Index: mpage-2.5.6/file.c
===================================================================
--- mpage-2.5.6.orig/file.c 2008-08-11 23:14:20.500638502 +0200
+++ mpage-2.5.6/file.c 2008-08-11 23:28:25.560795737 +0200
@@ -363,7 +363,7 @@
Debug(DB_STDIN, "%%iswanted: opt_first[i]: %d\n", opt_first[i]);
Debug(DB_STDIN, "%%iswanted: opt_alt[i]: %d\n", opt_alt[i]);
Debug(DB_STDIN, "%%iswanted: opt_last[i]: %d\n", opt_last[i]);
- if ((sn >= opt_first[i] && (opt_alt[i] <= 1 || (sn - opt_first[i]) % opt_alt[i] == 0) ) &&
+ if ((sn >= opt_first[i]) && ((sn - opt_first[i]) % opt_alt[i] == 0) &&
(sn <= opt_last[i])) {
Debug(DB_STDIN, "%%iswanted: wanted page %d\n", sn);
ps_outpages++;
Index: mpage-2.5.6/mpage.1.in
===================================================================
--- mpage-2.5.6.orig/mpage.1.in 2008-08-11 23:17:10.154306512 +0200
+++ mpage-2.5.6/mpage.1.in 2008-08-11 23:27:23.605265090 +0200
@@ -1,4 +1,4 @@
-.TH MPAGE Local 2008/01/14
+.TH MPAGE 1 2008/01/14
.SH NAME
mpage \- print multiple pages per sheet on PostScript printer
@@ -417,17 +417,33 @@
.TP
.B -t
Toggle printing on both sides of the paper.
-This will toggle duplex mode of the printer.
++This option has 3 states: nop, yes, no, which mean:
+.BR NOP :
+ dont do anything on PostScript, so printer default will be used;
+.BR YES :
+ force printer to do duplex;
+.BR NO :
+force printer not to do it.
+If there is no -t, then the duplex is NOP. If you put some -t on
+the command line, the state toggles as "yes,no,yes,no...".
+So, if your printer is set to print, by default, in duplex mode,
+you will use "-t -t" on command line to force it to print in non-duplex mode.
Use this option only if your printer is capable of printing in duplex mode.
.RI ( default
-off).
+NOP).
.TP
.B -T
-Toggle tumble of every second pages when printing in duplex mode.
-Use this option only if your printer is capable of printing in duplex mode
-and together with
-.BR -t .
+Toggle tumble of every second pages.
+This option has 3 states: nop, yes, no (with behaviour similar to -t).
+So, if your printer is set to print, by default, in duplex mode,
+with tumble on,
+you will use "-T -T" on command line to print in nontumble mode.
+Use this option only if your printer is capable of printing in duplex mode.
+With this version of mpage,
+you may use this option even if you do not use -t.
+.RI ( default
+NOP.)
.TP
.B -u
@@ -546,7 +562,7 @@
environment variables.
.SH FILES
-/usr/tmp/mpageXXXXXX
+/tmp/mpageXXXXXX
.br
PREFIX/share/mpage
Index: mpage-2.5.6/mpage.c
===================================================================
--- mpage-2.5.6.orig/mpage.c 2008-08-11 23:31:51.044505584 +0200
+++ mpage-2.5.6/mpage.c 2008-08-11 23:39:12.205645922 +0200
@@ -44,9 +44,21 @@
struct sheet *thesheet;
char outcommand[LINESIZE]; /* the command which is the output filter */
+ char * paper;
+
current_locale = setlocale(LC_ALL,"");
-
+#ifdef LIBPAPER
+ paperinit();
+ paper = systempapername();
+ if (!paper)
+ {
+ fprintf(stderr,"systempapername() returned NULL! exiting\n");
+ exit(1);
+ }
+ strncpy(opt_page,paper,31);
+#endif
+
#ifdef __EMX__
/*
* wildcard expansion from emx package (used by OS/2)
@@ -235,10 +247,10 @@
fprintf(outfd, "/mp_stm usertime def\n");
fprintf(outfd, "/mp_pgc statusdict begin pagecount end def\n");
fprintf(outfd, "statusdict begin /jobname (%s) def end\n", name);
- if (opt_duplex) {
+ if (opt_duplex && opt_duplex != 4 ) {
fprintf(outfd, "statusdict /setduplexmode known");
fprintf(outfd, " { statusdict begin true setduplexmode end } if\n");
- if (opt_tumble) {
+ if (opt_tumble && opt_tumble != 4 ) {
fprintf(outfd, "statusdict /settumble known ");
fprintf(outfd, "{ statusdict begin true settumble end } if\n");
}
Index: mpage-2.5.6/mpage.h
===================================================================
--- mpage-2.5.6.orig/mpage.h 2008-08-11 23:39:40.279245746 +0200
+++ mpage-2.5.6/mpage.h 2008-08-11 23:45:02.565611800 +0200
@@ -31,6 +31,10 @@
#include <limits.h>
#include <string.h>
+#ifdef LIBPAPER
+#include <paper.h>
+#endif
+
#define VERSION "2.5.6 Januari 2008"
#define TRUE 1
@@ -125,10 +129,11 @@
/*
* set default page size
*/
+#ifndef LIBPAPER
#if !defined(PAGE_DEF)
# define PAGE_DEF "A4"
#endif
-
+#endif
/*
* define print spooler types
*/
@@ -221,9 +226,6 @@
extern int ps_height; /* number of points in the Y direction (11 inches) */
extern char * media; /* name of output page media */
-
-extern struct page_desc paper[];
-
/* array of sheets where pages are ordered for coli ??? */
extern struct sheet coli[];
@@ -280,7 +282,11 @@
extern int opt_width; /* number of columns to fit on reduced page */
extern int opt_mp_header; /* let mpage create a header */
extern int opt_sheetheader; /* let mpage create sheetheaders */
+#ifndef LIBPAPER
extern char * opt_page; /* sheets size: a4 or us letter */
+#else
+extern char opt_page[]; /* sheets size: a4 or us letter */
+#endif
extern int opt_fold; /* fold long lines */
extern int opt_outline; /* print a nice outline around pages */
extern int opt_verbose; /* print a count of pages sent to printer */
Index: mpage-2.5.6/page.c
===================================================================
--- mpage-2.5.6.orig/page.c 2008-08-11 23:48:28.317336922 +0200
+++ mpage-2.5.6/page.c 2008-08-11 23:55:46.090284181 +0200
@@ -21,6 +21,8 @@
#include "mpage.h"
#include "string.h"
+extern struct page_desc paper[];
+
#define PAPERSIZE_FILE "/etc/papersize"
void
check_papersize()
@@ -59,12 +61,24 @@
void
set_page()
{
+#ifndef LIBPAPER
int i = select_pagetype(opt_page);
media = paper[i].media;
ps_width = paper[i].width;
ps_height = paper[i].height;
-
+#else
+ struct paper * ps;
+ ps=paperinfo(opt_page);
+ if (!ps) {
+ fprintf(stderr,"%s: unknown page format: %s\n",
+ MPAGE, opt_page);
+ exit(1);
+ }
+ media = papername(ps);
+ ps_width = paperpswidth(ps);
+ ps_height = paperpsheight(ps);
+#endif
return;
} /* set_page */
@@ -76,11 +90,21 @@
{
int i = 0;
+#ifndef LIBPAPER
while (paper[i].media && strcasecmp(pt, paper[i].media))
i++;
if (paper[i].media)
opt_page = paper[i].media;
else
+#else
+ struct paper * ps;
+
+ strncpy(opt_page,pt,31);
+ opt_page[31]='\0';
+
+ ps=paperinfo(opt_page);
+ if (!ps)
+#endif
fprintf(stderr, "%s: ignoring unknown paper type: %s\n",
MPAGE, pt);
return i;
Index: mpage-2.5.6/FAQ
===================================================================
--- mpage-2.5.6.orig/FAQ 2008-08-11 23:54:21.317453255 +0200
+++ mpage-2.5.6/FAQ 2008-08-11 23:55:38.833870662 +0200
@@ -27,3 +27,14 @@
This information is buried in the dvips manual somewhere, but is not easy
to find!
+
+Using mpage with magicfilter
+============================
+Andreas Jellinghaus <aj@debian.org> writes:
+
+I'm using mpage with lprng and magicfilter. My local magic filter setup
+is /usr/sbin/ljet4l-filter, and this line passes all ASCII files to mpage :
+default pipe /usr/bin/mpage -A -2
+
+I don't want to waste paper with ASCII texts. MPage also works for
+postscript files.
Index: mpage-2.5.6/Makefile
===================================================================
--- mpage-2.5.6.orig/Makefile 2008-08-11 23:55:14.508484437 +0200
+++ mpage-2.5.6/Makefile 2008-08-11 23:07:25.845008624 +0200
@@ -50,11 +50,11 @@
SPOOL_TYPE=BSD_SPOOLER
# PREFIX=e:/usr # OS/2 type
-PREFIX=/usr/local
-#PREFIX=/usr
+#PREFIX=/usr/local
+PREFIX=/usr
BINDIR=$(PREFIX)/bin
LIBDIR=$(PREFIX)/share
-MANDIR=$(PREFIX)/man/man1
+MANDIR=$(PREFIX)/share/man/man1
#
# A default encoding is given in encoding.h. Setting ENCODING=1 will
@@ -107,7 +107,8 @@
# If you are using gcc, you probably don't need to change anything here.
# Linux:
-CFLAGS = -O2 -s $(DEFS) -Wall
+CFLAGS = -O2 -s $(DEFS) -Wall -DLIBPAPER
+LIBS = -lpaper
# AIX (xlC on aix 4):
#CFLAGS = -O2 -s $(DEFS)
@@ -178,10 +179,8 @@
# add your proper install stuff
#
install:
- if [ ! -d $(LIBDIR)/mpage ] ; then mkdir -p $(LIBDIR)/mpage ; fi
- if [ ! -d $(BINDIR) ] ; then mkdir -p $(BINDIR) ; fi
- if [ ! -d $(MANDIR) ] ; then mkdir -p $(MANDIR) ; fi
- cp mpage$(E) $(BINDIR)
- cp mpage.1 $(MANDIR)
- -cp Encodings/* $(LIBDIR)/mpage
- -chmod 644 $(LIBDIR)/mpage/*
+ if [ ! -d $(DESTDIR)/$(LIBDIR)/mpage ] ; then mkdir -p $(DESTDIR)/$(LIBDIR)/mpage ; fi
+ if [ ! -d $(DESTDIR)/$(BINDIR) ] ; then mkdir -p $(DESTDIR)/$(BINDIR) ; fi
+ if [ ! -d $(DESTDIR)/$(MANDIR) ] ; then mkdir -p $(DESTDIR)/$(MANDIR) ; fi
+ install -s -m 755 -o root -g root mpage$(E) $(DESTDIR)/usr/bin
+ -cp Encodings/* $(DESTDIR)/usr/lib/mpage
Index: mpage-2.5.6/README
===================================================================
--- mpage-2.5.6.orig/README 2008-08-11 23:56:29.352749569 +0200
+++ mpage-2.5.6/README 2008-08-11 23:07:25.849008850 +0200
@@ -1,28 +1,3 @@
-
-COPYRIGHT:
-
-Mpage and all the files distributed with mpage are covered by copyright:
-
- Copyright (c) 1994-2004 Marcel J.E. Mol, The Netherlands
- Copyright (c) 1988 Mark P. Hahn, Herndon, Virginia
-
- Permission is granted to anyone to make or distribute verbatim
- copies of this document as received, in any medium, provided
- that this copyright notice is preserved, and that the
- distributor grants the recipient permission for further
- redistribution as permitted by this notice.
-
- marcel@mesa.nl
- MESA Consulting B.V.
- Nootdorp
- The Netherlands
- Phone: +31-15-3105252
- Mobile:+31-6-54724868
- Fax: +31-15-3105253
- email: info@mesa.nl http://www.mesa.nl ftp://ftp.mesa.nl
-
-
-=================================================================
DESCRIPTION:
Mpage is a program to reduce and print multiple pages of text per
@@ -30,54 +5,21 @@
It also has limited functionality to do the same directly with postscript
files.
-The following are the files you should have for mpage.
-
- README Notes and descriptions, this file
- README.OS2 OS/2 port description
- Copyright Copyright notice
- CHANGES Change history
- Makefile The Makefile
- TODO Wish List for changes
- FAQ Useful tips and hints
- NEWS Global changes, User visible changes
- Mpage.lsm LSM file for mpage
- args.c Command line and options processing
- encoding.h Definition of internal default character encoding
- encoding.h.CP850 Popular for renaming to encoding.h
- file.c Generic file handling
- glob.c Global variable setup
- mpage.h Definitions
- mpage.c Main Control
- page.c Page layout routines
- post.c PostScript file processing
- sample.c Prints sample page layout pages
- text.c Text file processing
- util.c Misc utility functions
- mpage.1 Manual page
+The following are some of the files you should receive in the Debian
+package:
All.chars Test file containing all ASCII characters
Encodings Directory with character encoding library files
Characters List of Postscript character encoding names
Encoding.format Description on how to create character encoding
library files
- gencodes.c Util program to build All.chars file
- Test Directory with test pages
-
- OS2 Directory with simulated lpr for OS/2
Contrib Directory with contributions by others
Contrib/mfix Fix to mpage that makes it work with ArborText
-
-INSTRUCTIONS:
-
-All you should need to do is run make. Actually it is probably better
-to have a look at the Makefile and to check settings like for example PAGESIZE
-to set the default page size (e.g A4 or Letter ...).
-This will create the programs mpage and msample. Mpage is
-the program to print n-up pages. Msample prints a sample outline. I
-used it for debugging the placement of the layout. It is also handy
-for other layout purposes. It accepts all the arguments that mpage
-does, but does not print files.
+Msample prints a sample outline. I used it for debugging the
+placement of the layout. It is also handy for other layout purposes.
+It accepts all the arguments that mpage does, but does not print
+files.
As a quick sample try:
@@ -87,9 +29,16 @@
or
"groff -man mpage.1 | mpage -2"
+USING ENCODINGS:
-The manual page, mpage.1, formats with UCB or ATT manual macros.
+Example supplied by Vassilis Virvilis. To print Greek characters, use
+the Greek fonts from http://www.csd.uch.gr/~lourakis/genscript/. Both
+enscript and a2ps embed the fonts in the generated postscript
+document. mpage utilizes the printer fonts. Therefore you will have to
+actually install the font for ghostscript. To print the Greek
+characters, use the following command:
+ mpage -FCourier-ISOLatinGreek -CISO-8859.7 test.txt > test.ps
USING MPAGE:
Index: mpage-2.5.6/args.c
===================================================================
--- mpage-2.5.6.orig/args.c 2008-08-11 23:57:11.963177801 +0200
+++ mpage-2.5.6/args.c 2008-08-11 23:07:25.817007026 +0200
@@ -91,7 +91,11 @@
UPDOWN : LEFTRIGHT;
break;
case 'A': /* A4 sized, european paper */
+#ifndef LIBPAPER
opt_page = "A4"; /* deprecated */
+#else
+ strcpy(opt_page,"a4");
+#endif
break;
case 'b': /* base paper type */
OPTARG();
@@ -386,17 +390,25 @@
case 'S':
opt_square = 0;
break;
+// opt_duplex and opt_tumble have 3 possible values:
+// 4 : do not do anything
+// 0 : force printer to do it
+// !0 : force printer not to do it
case 't':
- opt_duplex = 1 - opt_duplex;
+ opt_duplex = ! opt_duplex;
break;
case 'T':
- opt_tumble = 1 - opt_tumble;
+ opt_tumble = ! opt_tumble;
break;
case 'u':
check_utf8 = 1 - check_utf8;
break;
case 'U': /* Letter sized, US paper */
+#ifndef LIBPAPER
opt_page = "Letter"; /* deprecated */
+#else
+ strcpy(opt_page,"letter");
+#endif
break;
case 'v': /* verbose (print page count) */
opt_verbose = 1 - opt_verbose;
Index: mpage-2.5.6/glob.c
===================================================================
--- mpage-2.5.6.orig/glob.c 2008-08-11 23:58:11.934595375 +0200
+++ mpage-2.5.6/glob.c 2008-08-11 23:07:25.829007710 +0200
@@ -327,7 +327,11 @@
int opt_lines = 0; /* lines to fit on reduced page */
int opt_killtrail = 1; /* Quit reading input on %%TRailer */
int opt_width = 0; /* columns to fit on reduced page */
+#ifndef LIBPAPER
char * opt_page = PAGE_DEF; /* default paper size */
+#else
+char opt_page [32]; /* default paper size */
+#endif
/* boolean's: set default to 0 or 1 */
int opt_pr = 0; /* if true use pr(1) to format output */
int opt_mp_header = 0; /* let mpage create headers */
@@ -342,8 +346,12 @@
int opt_last[MAXJARG]; /* print as many as supplied per -j */
int opt_alt[MAXJARG]; /* by default print all sheets, odd+even per -j*/
int opt_file = 1; /* should each file appera on a new sheet */
-int opt_duplex = DEFAULT_DUPLEX; /* duplex mode flag */
-int opt_tumble = 0; /* tumble overy second pages */
+// opt_duplex and opt_tumble have 3 possible values:
+// 4 , aka NOP : dont do anything on PostScript,so printer default will be used
+// 0 , aka yes : force printer to do it
+// !0, aka no : force printer not to do it
+int opt_duplex = 4; /* duplex mode flag */
+int opt_tumble = 4; /* tumble overy second pages */
int opt_textbox = 0; /* don't normally draw box around text */
int opt_input = IN_AUTO; /* select input file format */
int opt_encoding = DEFAULT_ENCODING; /* use default encoding or not */
@@ -420,10 +428,15 @@
-j Print specified sheets: first[-last][%%interval]\n\
-j 1-10 does first 10 sheets, -j 1%%2 prints odd ones, -j 2%%2 even ones.\n\
-J Set the start of the sheet page count\n\
- -t Toggle printing both sides of the paper (Duplex mode, %s)\n\
- -T Toggle tumble of every second pages when printing in duplex mode (off)\n",
- fontname, opt_tabstop, PAGE_DEF, printprog, printarg,
- opt_duplex ? "on" : "off"
++ -t Toggle printing both sides of the paper (NOP,on,off,on...)\n\
++ -T Toggle tumble of every second pages (NOP,on,off,on...)\n",
+ fontname, opt_tabstop,
+#ifndef LIBPAPER
+ PAGE_DEF,
+#else
+ opt_page,
+#endif
+ PAGE_DEF, printprog, printarg
);
fprintf(stderr, "\n(c) 1993-2005 Marcel Mol, marcel@mesa.nl (MESA Consulting)\n");
Index: mpage-2.5.6/Contrib/psprint
===================================================================
--- mpage-2.5.6.orig/Contrib/psprint 2008-08-12 00:01:13.312931539 +0200
+++ mpage-2.5.6/Contrib/psprint 2008-08-11 23:07:25.825007484 +0200
@@ -1,10 +1,9 @@
-#!/bin/ksh -
+#!/bin/sh -
STDIN_TMP_FILE=/tmp/psprint.$$
GS=/usr/local/bin/gs
GSLIB=/usr/local/lib/ghostscript/3.53
-RM=/bin/rm
#
# define print command (SYSV or BSD ish)
# PRINT="lp -or -s"
@@ -20,7 +19,7 @@
${GSLIB}/quit.ps
done
-${RM} -f "${STDIN_TMP_FILE}"
+rm -f "${STDIN_TMP_FILE}"
exit 0
Index: mpage-2.5.6/Encodings/ISO-8859.7
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ mpage-2.5.6/Encodings/ISO-8859.7 2008-08-11 23:07:25.853009079 +0200
@@ -0,0 +1,231 @@
+%%%% ISO-8859.7 character encoding (I think...)
+27 255 % first and last encoding
+027 /florin
+028 /dagger
+029 /daggerdbl
+030 /perthousand
+031 /trademark
+032 /space
+033 /exclam
+034 /quotedbl
+035 /numbersign
+036 /dollar
+037 /percent
+038 /ampersand
+039 /quoteright
+040 /parenleft
+041 /parenright
+042 /asterisk
+043 /plus
+044 /comma
+045 /hyphen
+046 /period
+047 /slash
+048 /zero
+049 /one
+050 /two
+051 /three
+052 /four
+053 /five
+054 /six
+055 /seven
+056 /eight
+057 /nine
+058 /colon
+059 /semicolon
+060 /less
+061 /equal
+062 /greater
+063 /question
+064 /at
+065 /A
+066 /B
+067 /C
+068 /D
+069 /E
+070 /F
+071 /G
+072 /H
+073 /I
+074 /J
+075 /K
+076 /L
+077 /M
+078 /N
+079 /O
+080 /P
+081 /Q
+082 /R
+083 /S
+084 /T
+085 /U
+086 /V
+087 /W
+088 /X
+089 /Y
+090 /Z
+091 /bracketleft
+092 /backslash
+093 /bracketright
+094 /asciicircum
+095 /underscore
+096 /quoteleft
+097 /a
+098 /b
+099 /c
+100 /d
+101 /e
+102 /f
+103 /g
+104 /h
+105 /i
+106 /j
+107 /k
+108 /l
+109 /m
+110 /n
+111 /o
+112 /p
+113 /q
+114 /r
+115 /s
+116 /t
+117 /u
+118 /v
+119 /w
+120 /x
+121 /y
+122 /z
+123 /braceleft
+124 /bar
+125 /braceright
+126 /asciitilde
+127 /.notdef
+128 /.notdef
+129 /.notdef
+130 /.notdef
+131 /.notdef
+132 /.notdef
+133 /.notdef
+134 /.notdef
+135 /.notdef
+136 /.notdef
+137 /.notdef
+138 /.notdef
+139 /.notdef
+140 /.notdef
+141 /.notdef
+142 /.notdef
+143 /.notdef
+144 /.notdef
+145 /.notdef
+146 /.notdef
+147 /.notdef
+148 /.notdef
+149 /.notdef
+150 /.notdef
+151 /.notdef
+152 /.notdef
+153 /.notdef
+154 /.notdef
+155 /.notdef
+156 /.notdef
+157 /.notdef
+158 /.notdef
+159 /.notdef
+160 /space
+161 /quoteleft
+162 /quoteright
+163 /sterling
+164 /.notdef
+165 /.notdef
+166 /brokenbar
+167 /section
+168 /dieresis
+169 /copyright
+170 /.notdef
+171 /guillemotleft
+172 /logicalnot
+173 /hyphen
+174 /.notdef
+175 /endash
+176 /degree
+177 /plusminus
+178 /twosuperior
+179 /threesuperior
+180 /acute
+181 /dieresisacute
+182 /afii9936
+183 /periodcentered
+184 /afii9937
+185 /afii9938
+186 /afii9939
+187 /guillemotright
+188 /afii9940
+189 /onehalf
+190 /afii9941
+191 /afii9942
+192 /afii9977
+193 /afii9793
+194 /afii9794
+195 /afii9796
+196 /afii9797
+197 /afii9798
+198 /afii9801
+199 /afii9802
+200 /afii9803
+201 /afii9804
+202 /afii9805
+203 /afii9806
+204 /afii9807
+205 /afii9808
+206 /afii9809
+207 /afii9810
+208 /afii9811
+209 /afii9813
+210 /.notdef
+211 /afii9814
+212 /afii9816
+213 /afii9817
+214 /afii9818
+215 /afii9819
+216 /afii9820
+217 /afii9821
+218 /afii9943
+219 /afii9944
+220 /afii9968
+221 /afii9969
+222 /afii9970
+223 /afii9971
+224 /afii9978
+225 /afii9825
+226 /afii9826
+227 /afii9828
+228 /afii9829
+229 /afii9830
+230 /afii9833
+231 /afii9834
+232 /afii9835
+233 /afii9836
+234 /afii9837
+235 /afii9838
+236 /afii9839
+237 /afii9840
+238 /afii9841
+239 /afii9842
+240 /afii9843
+241 /afii9845
+242 /afii9847
+243 /afii9846
+244 /afii9848
+245 /afii9849
+246 /afii9850
+247 /afii9851
+248 /afii9852
+249 /afii9853
+250 /afii9975
+251 /afii9976
+252 /afii9972
+253 /afii9973
+254 /afii9974
+255 /.notdef
Index: mpage-2.5.6/Contrib/mfix/mfix.c
===================================================================
--- mpage-2.5.6.orig/Contrib/mfix/mfix.c 2008-08-12 00:02:40.797917022 +0200
+++ mpage-2.5.6/Contrib/mfix/mfix.c 2008-08-11 23:07:25.829007710 +0200
@@ -1,7 +1,7 @@
#include <stdio.h>
-FILE *in=stdin,*out=stdout;
-char line[200]; line2[200];
+FILE *in,*out;
+char line[200], line2[200];
int
strcp(st1,st2)
@@ -15,6 +15,8 @@
main()
{
int i;
+ in = stdin;
+ out = stdout;
for(i=0; i<10; i=1)
{
if (fgets(line,200,in)==NULL) { close(in); close(out); exit(1); }
@@ -41,4 +43,4 @@
fprintf(out,"%s",line);
}
}
-
\ No newline at end of file
+
|