Changeset 4031

Show
Ignore:
Timestamp:
2006年02月05日 21時37分28秒 (2 years ago)
Author:
fujii
Message:

* lread.c (openp): initialize encoded_fn before GCPRO6.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4026 r4031  
     12006-02-05  Masayuki FUJII  <boochang@m4.kcn.ne.jp> 
     2 
     3        * lread.c (openp): initialize encoded_fn before GCPRO6. 
     4 
    152006-02-01  Kyotaro HORIGUCHI  <horiguti@meadowy.org> 
    26        * mw32term.c: Include winable.h to use SendInput() and related 
  • trunk/src/lread.c

    r4020 r4031  
    10801080    } 
    10811081 
     1082#ifdef MEADOW 
     1083  /* All GCPROed Lisp_Objects must be initialized before GCPRO in Meadow. */ 
     1084  string = filename = encoded_fn = Qnil; 
     1085#else 
    10821086  string = filename = Qnil; 
     1087#endif 
    10831088  GCPRO6 (str, string, filename, path, suffixes, encoded_fn); 
    10841089