Changeset 3895
- Timestamp:
- 10/05/05 07:06:42 (3 years ago)
- Files:
-
- trunk/src/ChangeLog.Meadow (modified) (1 diff)
- trunk/src/minibuf.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ChangeLog.Meadow
r3894 r3895 1 2005-10-05 Masayuki FUJII <boochang@m4.kcn.ne.jp> 2 3 * minibuf.c (Fminibuffer_complete_word): Add GCPRO. 4 1 5 2005-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> 2 6 trunk/src/minibuf.c
r3894 r3895 2337 2337 /* Otherwise insert in minibuffer the chars we got */ 2338 2338 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 2339 2345 if (! NILP (Vminibuffer_completing_file_name) 2340 2346 && SREF (completion, SBYTES (completion) - 1) == '/' … … 2348 2354 2349 2355 insert_from_string (completion, 0, 0, i, i_byte, 1); 2356 2357 #ifdef MEADOW 2358 UNGCPRO; 2359 #endif 2360 2350 2361 return Qt; 2351 2362 }
