Changeset 3895

Show
Ignore:
Timestamp:
10/05/05 07:06:42 (3 years ago)
Author:
fujii
Message:

Add GCPRO. See ticket:183.

* minibuf.c (Fminibuffer_complete_word): Add GCPRO.

Files:

Legend:

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

    r3894 r3895  
     12005-10-05  Masayuki FUJII  <boochang@m4.kcn.ne.jp> 
     2 
     3        * minibuf.c (Fminibuffer_complete_word): Add GCPRO. 
     4 
    152005-10-02  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    26 
  • trunk/src/minibuf.c

    r3894 r3895  
    23372337  /* Otherwise insert in minibuffer the chars we got */ 
    23382338 
     2339#ifdef MEADOW 
     2340  /* Meadow requires that `completion' is GCPROed here. It is not 
     2341     checked that Emacs requires GCPRO. */ 
     2342  GCPRO1(completion); 
     2343#endif 
     2344 
    23392345  if (! NILP (Vminibuffer_completing_file_name) 
    23402346      && SREF (completion, SBYTES (completion) - 1) == '/' 
     
    23482354 
    23492355  insert_from_string (completion, 0, 0, i, i_byte, 1); 
     2356 
     2357#ifdef MEADOW 
     2358  UNGCPRO; 
     2359#endif 
     2360 
    23502361  return Qt; 
    23512362}