[L4alpha-cvscommit] CVS: dite/src edit.c,1.30,1.31
Status: Beta
Brought to you by:
dpotts
|
From: Simon W. <sj...@us...> - 2002-06-07 04:48:55
|
Update of /cvsroot/l4alpha/dite/src
In directory usw-pr-cvs1:/tmp/cvs-serv2351/src
Modified Files:
edit.c
Log Message:
OBJ_RAW, not FL_RAW. Sigh.
Index: edit.c
===================================================================
RCS file: /cvsroot/l4alpha/dite/src/edit.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** edit.c 7 Jun 2002 04:44:32 -0000 1.30
--- edit.c 7 Jun 2002 04:48:50 -0000 1.31
***************
*** 2,6 ****
* Project: EDIT --- Extended DIT
* Created: 12/07/2000 19:46:03 by Simon Winwood (sjw)
! * Last Modified: 07/06/2002 14:43:42 by (sjw)
* Version info: $Revision$
* Description:
--- 2,6 ----
* Project: EDIT --- Extended DIT
* Created: 12/07/2000 19:46:03 by Simon Winwood (sjw)
! * Last Modified: 07/06/2002 14:47:49 by (sjw)
* Version info: $Revision$
* Description:
***************
*** 18,21 ****
--- 18,24 ----
*
* $Log$
+ * Revision 1.31 2002/06/07 04:48:50 sjw_
+ * OBJ_RAW, not FL_RAW. Sigh.
+ *
* Revision 1.30 2002/06/07 04:44:32 sjw_
* Fixed FL_RAW
***************
*** 383,388 ****
int i;
! if(efile->flags & FL_RAW) {
! efile->objtype = OBJ_RAW;
raw_register(efile);
return 0;
--- 386,390 ----
int i;
! if(efile->objtype == OBJ_RAW) {
raw_register(efile);
return 0;
***************
*** 506,510 ****
case 'R': /* Raw */
! sources[num_sources].objtype |= OBJ_RAW;
break;
--- 508,512 ----
case 'R': /* Raw */
! sources[num_sources].objtype = OBJ_RAW;
break;
|