Fix InstrumentSwitch grob definition.
[lilypond.git] / lily / smobs.cc
blob7bdaaa7f922017055367d496abe3c852a744b479
1 /*
2 smobs.cc -- implement Smob protection
4 source file of the GNU LilyPond music typesetter
6 (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #include "smobs.hh"
12 The CDR contains the actual protected list.
14 static SCM smob_protection_list = SCM_EOL;
16 void
17 init_smob_protection ()
19 smob_protection_list = scm_cons (SCM_BOOL_F, SCM_EOL);
20 scm_gc_protect_object (smob_protection_list);
22 ADD_SCM_INIT_FUNC (init_smob_protection, init_smob_protection);
24 LY_DEFINE (ly_smob_protects, "ly:smob-protects",
25 0, 0, 0, (),
26 "Return LilyPond's internal smob protection list.")
28 return scm_is_pair (smob_protection_list)
29 ? scm_cdr (smob_protection_list)
30 : SCM_EOL;
33 void
34 protect_smob (SCM smob, SCM *prot_cons)
36 #if 0
37 SCM s = scm_cdr (smob_protection_list);
38 while (scm_is_pair (s) && scm_car (s) == SCM_BOOL_F)
40 s = scm_cdr (s);
42 SCM prot = scm_cons (smob, s);
43 scm_set_cdr_x (smob_protection_list,
44 prot);
45 *prot_cons = prot;
46 #else
47 (void) prot_cons;
48 scm_gc_protect_object (smob);
49 #endif
52 void
53 unprotect_smob (SCM smob, SCM *prot_cons)
55 #if 1
56 (void) prot_cons;
57 scm_gc_unprotect_object (smob);
58 #else
59 SCM next = scm_cdr (*prot_cons);
61 if (next == SCM_EOL)
62 scm_set_car_x (*prot_cons, SCM_BOOL_F);
63 else
65 scm_set_car_x (*prot_cons, SCM_BOOL_F);
66 while (scm_is_pair (next)
67 && scm_car (next) == SCM_BOOL_F)
69 next = scm_cdr (next);
71 scm_set_cdr_x (*prot_cons, next);
74 *prot_cons = SCM_EOL;
75 #endif