From: handa Date: Tue, 24 Nov 2009 04:37:14 +0000 (+0000) Subject: (OTF_InternalData): Delete the member drive_log. X-Git-Tag: REL-0-9-11~22 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9ebe42a49598c53f25dbc127f2bd91db18b97580;p=m17n%2Flibotf.git (OTF_InternalData): Delete the member drive_log. (set_drive_log, get_drive_log): Delete them. --- diff --git a/src/otfopen.c b/src/otfopen.c index c688728..3fdc41f 100644 --- a/src/otfopen.c +++ b/src/otfopen.c @@ -331,9 +331,6 @@ struct OTF_InternalData /* Root of application data chain. */ OTF_ApplicationData *app_data; - - /* Log of applied features by OTF_driver_XXX. */ - OTF_DriveLog *drive_log; }; static OTF_MemoryRecord * @@ -387,22 +384,6 @@ allocate_memory_record (OTF *otf) } \ } while (0) -void -set_drive_log (OTF *otf, OTF_DriveLog *log) -{ - OTF_InternalData *internal_data = (OTF_InternalData *) otf->internal_data; - - internal_data->drive_log = log; -} - -OTF_DriveLog * -get_drive_log (OTF *otf) -{ - OTF_InternalData *internal_data = (OTF_InternalData *) otf->internal_data; - - return (internal_data->drive_log); -} - /*** (1-2) "head" table */