aboutsummaryrefslogtreecommitdiff
path: root/mail/faces/files/patch-cd
blob: 177e6ed7d9db21e736132738fb2939caa75b14c7 (plain) (blame)
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
*** compface/compface.c	Thu Feb 21 16:42:54 2002
--- /home/lkoeller/tmp/ports/mail/faces/work/faces/compface/compface.c	Wed Jun 19 08:29:12 1991
***************
*** 14,29 ****
   *  to me, then an attempt will be made to fix them.
   */
  
  #include "compface.h"
- #include "vars.h"
  
  int
! compface(char *fbuf)
  {
!     if (!(status = setjmp(comp_env))) {
          ReadFace(fbuf);
          GenFace();
          CompAll(fbuf);
      }
!     return(status);
  }
--- 13,31 ----
   *  to me, then an attempt will be made to fix them.
   */
  
+ #define MAIN
+ 
  #include "compface.h"
  
  int
! compface(fbuf)
! char *fbuf;
  {
! 	if (!(status = setjmp(comp_env)))
! 	{
  		ReadFace(fbuf);
  		GenFace();
  		CompAll(fbuf);
  	}
! 	return status;
  }