]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-guile.cc
*** empty log message ***
[lilypond.git] / lily / lily-guile.cc
1 /*
2   lily-guile.cc -- implement assorted guile functions
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7                  Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
9
10 #include "lily-guile.hh"
11
12 #include <cstdio>
13 #include <cstdlib>
14 #include <math.h>   /* isinf */
15 #include <cstring> /* strdup, strchr */
16 #include <cctype>
17
18 #include <libintl.h>            // gettext on macos x
19
20 #include "version.hh"
21
22 /* MacOS S fix:
23    source-file.hh includes cmath which undefines isinf and isnan
24 */
25 #ifdef MACOS_X
26 inline int my_isinf (Real r) { return isinf (r); }
27 inline int my_isnan (Real r) { return isnan (r); }
28 #endif
29
30 #include "libc-extension.hh"
31 #include "main.hh"
32 #include "file-path.hh"
33 #include "warn.hh"
34 #include "direction.hh"
35 #include "offset.hh"
36 #include "pitch.hh"
37 #include "dimensions.hh"
38 #include "source-file.hh"
39
40 // #define TEST_GC
41
42 SCM
43 ly_to_symbol (SCM scm)
44 {
45   return scm_string_to_symbol (ly_to_string (scm));
46 }
47
48 SCM
49 ly_to_string (SCM scm)
50 {
51   return scm_call_3 (ly_scheme_function ("format"), SCM_BOOL_F,
52                      scm_makfrom0str ("~S"), scm);
53 }
54
55 SCM
56 ly_last (SCM list)
57 {
58   return scm_car (scm_last_pair (list));
59 }
60
61 SCM
62 ly_write2scm (SCM s)
63 {
64   SCM port = scm_mkstrport (SCM_INUM0, 
65                             scm_make_string (SCM_INUM0, SCM_UNDEFINED),
66                             SCM_OPN | SCM_WRTNG,
67                             "ly_write2string");
68   //  SCM write = scm_eval_3 (ly_symbol2scm ("write"), s, SCM_EOL);
69   SCM write = scm_primitive_eval (ly_symbol2scm ("write"));
70   
71   // scm_apply (write, port, SCM_EOL);
72   scm_call_2 (write, s, port);
73   return scm_strport_to_string (port);
74 }
75
76 SCM
77 ly_quote_scm (SCM s)
78 {
79   return scm_list_n (ly_symbol2scm ("quote"), s, SCM_UNDEFINED);
80 }
81
82 String
83 ly_symbol2string (SCM s)
84 {
85   /*
86     Ugh. this is not very efficient.
87    */
88   SCM str = scm_symbol_to_string (s);
89   return ly_scm2string (str);
90 }
91
92 String
93 gulp_file_to_string (String fn, bool must_exist)
94 {
95   String s = global_path.find (fn);
96   if (s == "")
97     {
98       if (must_exist)
99         {
100           String e = _f ("can't find file: `%s'", fn);
101           e += " ";
102           e += _f ("(load path: `%s')", global_path.to_string ());
103           error (e);
104           /* unreachable */
105         }
106       return s;
107     }
108
109   if (verbose_global_b)
110     progress_indication ("[" + s);
111
112   int n;
113   char *str = gulp_file (s, &n);
114   String result (str);
115   delete[] str;
116   
117   if (verbose_global_b)
118     progress_indication ("]");
119
120   return result;
121 }
122
123 LY_DEFINE (ly_gulp_file, "ly:gulp-file",
124            1, 0, 0, (SCM name),
125            "Read the file @var{name}, and return its contents in a string.  "
126            "The file is looked up using the search path.")
127 {
128   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, __FUNCTION__, "string");
129   return scm_makfrom0str (gulp_file_to_string (ly_scm2string (name),
130                                                true).to_str0 ());
131                                                
132 }
133
134
135 extern "C" {
136   // maybe gdb 5.0 becomes quicker if it doesn't do fancy C++ typing?
137 void
138 ly_display_scm (SCM s)
139 {
140   scm_display (s, scm_current_output_port ());
141   scm_newline (scm_current_output_port ());
142 }
143 };
144
145 String
146 ly_scm2string (SCM str)
147 {
148   assert (scm_is_string (str));
149   return String ((Byte*)scm_i_string_chars (str),
150                  (int) scm_i_string_length (str));
151 }
152
153 char *
154 ly_scm2newstr (SCM str, size_t *lenp)
155 {
156   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
157
158   size_t len = SCM_STRING_LENGTH (str);
159   if (char *new_str = (char *) malloc ((len + 1) * sizeof (char)))
160     {
161       memcpy (new_str, scm_i_string_chars (str), len);
162       new_str[len] = '\0';
163
164       if (lenp)
165         *lenp = len;
166       
167       return new_str;
168     }
169   return 0;
170 }
171
172 SCM
173 index_get_cell (SCM s, Direction d)
174 {
175   
176   assert (d);
177   return (d == LEFT) ? scm_car (s) : scm_cdr (s);
178 }
179
180 SCM
181 index_set_cell (SCM s, Direction d, SCM v)
182 {
183   if (d == LEFT)
184     scm_set_car_x (s, v);
185   else if (d == RIGHT)
186     scm_set_cdr_x (s, v);
187   return s;
188 }
189   
190 LY_DEFINE (ly_warn, "ly:warn",
191            1, 0, 1, (SCM str, SCM rest),
192            "Scheme callable function to issue the warning @code{msg}. "
193            "The message is formatted with @code{format} and @code{rest}.")
194 {
195   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
196   progress_indication ("\n");
197
198   str = scm_simple_format (SCM_BOOL_F, str, rest);
199   warning ("lily-guile: " + ly_scm2string (str));
200   return SCM_UNSPECIFIED;
201 }
202
203 LY_DEFINE (ly_programming_error, "ly:programming-error",
204            1, 0, 1, (SCM str, SCM rest),
205            "Scheme callable function to issue the warning @code{msg}. "
206            "The message is formatted with @code{format} and @code{rest}.")
207 {
208   SCM_ASSERT_TYPE (scm_is_string (str), str, SCM_ARG1, __FUNCTION__, "string");
209   progress_indication ("\n");
210
211   str = scm_simple_format (SCM_BOOL_F, str, rest);
212   programming_error (ly_scm2string (str));
213   return SCM_UNSPECIFIED;
214 }
215
216 LY_DEFINE (ly_dir_p, "ly:dir?",
217            1, 0, 0, (SCM s),
218           "type predicate. A direction is @code{-1}, @code{0} or "
219            "@code{1}, where @code{-1} represents "
220           "left or down and @code{1} represents right or up.")
221 {
222   if (scm_is_number (s))
223     {
224       int i = scm_to_int (s);
225       return (i>= -1 && i <= 1)  ? SCM_BOOL_T : SCM_BOOL_F; 
226     }
227   return SCM_BOOL_F;
228 }
229
230 bool
231 is_number_pair (SCM p)
232 {
233   return scm_is_pair (p)
234     && scm_is_number (scm_car (p)) && scm_is_number (scm_cdr (p));
235 }
236
237 typedef void (*Void_fptr) ();
238 Array<Void_fptr> *scm_init_funcs_;
239
240 void add_scm_init_func (void (*f) ())
241 {
242   if (!scm_init_funcs_)
243     scm_init_funcs_ = new Array<Void_fptr>;
244
245   scm_init_funcs_->push (f);
246 }
247
248 void
249 ly_init_ly_module (void *)
250 {
251   for (int i = scm_init_funcs_->size () ; i--;)
252     (scm_init_funcs_->elem (i)) ();
253
254   if (verbose_global_b)
255     progress_indication ("\n");
256   
257   scm_primitive_load_path (scm_makfrom0str ("lily.scm"));
258 }
259
260 SCM global_lily_module;
261
262 void
263 ly_c_init_guile ()
264 {
265   global_lily_module = scm_c_define_module ("lily", ly_init_ly_module, 0);
266   scm_c_use_module ("lily");
267 }
268
269 unsigned int
270 ly_scm_hash (SCM s)
271 {
272   return scm_ihashv (s, ~1u);
273 }
274
275 bool
276 is_direction (SCM s)
277 {
278   if (scm_is_number (s))
279     {
280       int i = scm_to_int (s);
281       return i>= -1 && i <= 1; 
282     }
283   return false;
284 }
285
286 LY_DEFINE (ly_assoc_get, "ly:assoc-get",
287            2, 1, 0,
288            (SCM key, SCM alist, SCM default_value),
289            "Return value if KEY in ALIST, else DEFAULT-VALUE "
290            "(or #f if not specified).")
291 {
292   SCM handle = scm_assoc (key, alist);
293
294   if (default_value == SCM_UNDEFINED)
295     default_value = SCM_BOOL_F;
296   
297   if (scm_is_pair (handle))
298     return scm_cdr (handle);
299   else
300     return default_value;
301 }
302
303 bool
304 is_axis (SCM s)
305 {
306   if (scm_is_number (s))
307     {
308       int i = scm_to_int (s);
309       return i == 0 || i == 1;
310     }
311   return false;
312 }
313
314 Direction
315 to_dir (SCM s)
316 {
317   return scm_is_integer (s) ? (Direction) scm_to_int (s) : CENTER;
318 }
319
320 Interval
321 ly_scm2interval (SCM p)
322 {
323   return Interval (scm_to_double (scm_car (p)), scm_to_double (scm_cdr (p)));
324 }
325
326 Drul_array<Real>
327 ly_scm2realdrul (SCM p)
328 {
329   return Drul_array<Real> (scm_to_double (scm_car (p)),
330                            scm_to_double (scm_cdr (p)));
331 }
332
333 SCM
334 ly_interval2scm (Drul_array<Real> i)
335 {
336   return scm_cons (scm_make_real (i[LEFT]), scm_make_real (i[RIGHT]));
337 }
338
339 bool
340 to_boolean (SCM s)
341 {
342   return scm_is_bool (s) && ly_scm2bool (s);
343 }
344
345 /* Appendable list L: the cdr contains the list, the car the last cons
346    in the list.  */
347 SCM
348 appendable_list ()
349 {
350   SCM s = scm_cons (SCM_EOL, SCM_EOL);
351   scm_set_car_x (s, s);
352   
353   return s;
354 }
355
356 void
357 appendable_list_append (SCM l, SCM elt)
358 {
359   SCM newcons = scm_cons (elt, SCM_EOL);
360   
361   scm_set_cdr_x (scm_car (l), newcons);      
362   scm_set_car_x (l, newcons);
363 }
364
365 SCM
366 ly_offset2scm (Offset o)
367 {
368   return scm_cons (scm_make_real (o[X_AXIS]), scm_make_real (o[Y_AXIS]));
369 }
370
371 Offset
372 ly_scm2offset (SCM s)
373 {
374   return Offset (scm_to_double (scm_car (s)),
375                  scm_to_double (scm_cdr (s)));
376 }
377
378 LY_DEFINE (ly_number2string, "ly:number->string",
379            1, 0, 0, (SCM s),
380            "Convert @var{num} to a string without generating many decimals.")
381 {
382   SCM_ASSERT_TYPE (scm_is_number (s), s, SCM_ARG1, __FUNCTION__, "number");
383
384   char str[400];                        // ugh.
385
386   if (scm_exact_p (s) == SCM_BOOL_F)
387     {
388       Real r (scm_to_double (s));
389 #ifdef MACOS_X
390       if (my_isinf (r) || my_isnan (r))
391 #else
392       if (isinf (r) || isnan (r))
393 #endif
394         {
395           programming_error ("Infinity or NaN encountered while converting Real number; setting to zero.");
396           r = 0.0;
397         }
398
399       sprintf (str, "%08.4f", r);
400     }
401   else
402     sprintf (str, "%d", scm_to_int (s));
403
404   return scm_makfrom0str (str);
405 }
406
407
408
409 LY_DEFINE (ly_version,  "ly:version", 0, 0, 0, (),
410           "Return the current lilypond version as a list, e.g. @code{(1 3 127 uu1)}. ")
411 {
412   char const* vs = "\'(" MAJOR_VERSION " " MINOR_VERSION " "  PATCH_LEVEL " " MY_PATCH_LEVEL ")" ;
413   
414   return scm_c_eval_string ((char*)vs);
415 }
416
417 LY_DEFINE (ly_unit,  "ly:unit", 0, 0, 0, (),
418           "Return the unit used for lengths as a string.")
419 {
420   return scm_makfrom0str (INTERNAL_UNIT);
421 }
422
423
424
425 LY_DEFINE (ly_dimension_p,  "ly:dimension?", 1, 0, 0, (SCM d),
426           "Return @var{d} is a number. Used to distinguish length "
427           "variables from normal numbers.")
428 {
429   return scm_number_p (d);
430 }
431
432 SCM
433 ly_deep_copy (SCM src)
434 {
435   if (scm_is_pair (src))
436     return scm_cons (ly_deep_copy (scm_car (src)), ly_deep_copy (scm_cdr (src)));
437   else if (ly_c_vector_p (src))
438     {
439       int len = SCM_VECTOR_LENGTH (src);
440       SCM nv = scm_c_make_vector (len, SCM_UNDEFINED);
441       for (int i = 0 ;i < len ; i++)
442         {
443           SCM si = scm_int2num (i);
444           scm_vector_set_x (nv, si, ly_deep_copy (scm_vector_ref (src, si))); 
445         }
446     }
447   return src;
448 }
449
450
451
452
453 SCM
454 ly_assoc_chain (SCM key, SCM achain)
455 {
456   if (scm_is_pair (achain))
457     {
458       SCM handle = scm_assoc (key, scm_car (achain));
459       if (scm_is_pair (handle))
460         return handle;
461       else
462         return ly_assoc_chain (key, scm_cdr (achain));
463     }
464   else
465     return SCM_BOOL_F;
466 }
467
468 /* looks the key up in the cdrs of the alist-keys
469    - ignoring the car and ignoring non-pair keys.
470    Returns first match found, i.e.
471
472    alist = ((1 . 10)
473                    ((1 . 2) . 11)
474                    ((2 . 1) . 12)
475                    ((3 . 0) . 13)
476                    ((4 . 1) . 14) )
477
478 I would like (ly_assoc_cdr 1) to return 12 - because it's the first
479 element with the cdr of the key = 1.  In other words (alloc_cdr key)
480 corresponds to call
481
482 (alloc (anything . key))
483
484
485
486 */
487 SCM
488 ly_assoc_cdr (SCM key, SCM alist)
489 {
490   if (scm_is_pair (alist))
491     {
492       SCM trykey = scm_caar (alist);
493       if (scm_is_pair (trykey) && to_boolean (scm_equal_p (key, scm_cdr (trykey))))
494         return scm_car (alist);
495       else
496         return ly_assoc_cdr (key, scm_cdr (alist));
497     }
498   return SCM_BOOL_F;
499 }
500
501 /* LST has the form "sym1 sym2 sym3\nsym4\nsym5"
502    i.e. \n and ' ' can be used interchangeably as separators.  */
503 SCM
504 parse_symbol_list (char const *lst)
505 {
506   char *s = strdup (lst);
507   char *orig = s;
508   SCM create_list = SCM_EOL;
509
510   char * e = s + strlen (s) - 1;
511   while (e >= s && isspace (*e))
512     *e-- = 0;
513
514   for (char * p = s; *p; p++)
515     if (*p == '\n')
516       *p = ' ';
517   
518   if (!s[0])
519     s = 0;
520   
521   while (s)
522     {
523       char *next = strchr (s, ' ');
524       if (next)
525         *next++ = 0;
526
527       create_list = scm_cons (ly_symbol2scm (s), create_list);
528       s = next;
529     }
530
531   free (orig);
532   return create_list;
533 }
534
535 SCM
536 ly_truncate_list (int k, SCM lst)
537 {
538   if (k == 0)
539     lst = SCM_EOL;
540   else
541     {
542       SCM s = lst;
543       k--;
544       for (; scm_is_pair (s) && k--; s = scm_cdr (s))
545         ;
546
547       if (scm_is_pair (s))
548         scm_set_cdr_x (s, SCM_EOL);
549     }
550   return lst;
551 }
552
553 String
554 print_scm_val (SCM val)
555 {
556   String realval = ly_scm2string (ly_write2scm (val));
557   if (realval.length () > 200)
558     realval = realval.left_string (100)
559       + "\n :\n :\n"
560       + realval.right_string (100);
561   return realval;        
562 }
563
564 bool
565 type_check_assignment (SCM sym, SCM val,  SCM type_symbol) 
566 {
567   bool ok = true;
568
569   /*
570     Always succeeds.
571
572
573     TODO: should remove #f from allowed vals?
574    */
575   if (val == SCM_EOL || val == SCM_BOOL_F)
576     return ok;
577
578   if (!scm_is_symbol (sym))
579 #if 0
580     return false;
581 #else
582   /*
583     This is used for autoBeamSettings.
584
585     TODO: deprecate the use of \override and \revert for
586     autoBeamSettings?
587
588     or use a symbol autoBeamSettingS?  
589    */
590   return true; 
591 #endif
592   
593   SCM type = scm_object_property (sym, type_symbol);
594
595   if (type != SCM_EOL && !ly_c_procedure_p (type))
596       {
597         warning (_f ("Can't find property type-check for `%s' (%s).",
598                      ly_symbol2string (sym).to_str0 (),
599                      ly_symbol2string (type_symbol).to_str0 ())
600                  + "  " + _ ("Perhaps you made a typing error?"));
601
602         /* Be strict when being anal :) */
603         if (internal_type_checking_global_b)
604           abort ();
605         
606         warning (_ ("Doing assignment anyway."));
607       }
608   else
609     {
610       if (val != SCM_EOL
611           && ly_c_procedure_p (type)
612           && scm_call_1 (type, val) == SCM_BOOL_F)
613         {
614           SCM errport = scm_current_error_port ();
615           ok = false;
616           SCM typefunc = ly_scheme_function ("type-name");
617           SCM type_name = scm_call_1 (typefunc, type);
618
619          
620           scm_puts (_f ("Type check for `%s' failed; value `%s' must be of type `%s'",
621                         ly_symbol2string (sym).to_str0 (),
622                         print_scm_val (val),
623                         ly_scm2string (type_name).to_str0 ()).to_str0 (),
624                     errport);
625           scm_puts ("\n", errport);                   
626         }
627     }
628   return ok;
629 }
630
631
632 /* some SCM abbrevs
633
634    zijn deze nou handig?
635    zijn ze er al in scheme, maar heten ze anders? */
636
637
638 /* Remove doubles from (sorted) list */
639 SCM
640 ly_unique (SCM list)
641 {
642   SCM unique = SCM_EOL;
643   for (SCM i = list; scm_is_pair (i); i = scm_cdr (i))
644     {
645       if (!scm_is_pair (scm_cdr (i))
646           || !ly_c_equal_p (scm_car (i), scm_cadr (i)))
647         unique = scm_cons (scm_car (i), unique);
648     }
649   return scm_reverse_x (unique, SCM_EOL);
650 }
651
652
653 static int
654 scm_default_compare (void const *a, void const *b)
655 {
656   SCM pa = *(SCM*) a;
657   SCM pb = *(SCM*) b;
658   if (pa == pb)
659     return 0;
660   return pa < pb ? -1 : 1;
661 }
662
663 /*  Modify LST in place: qsort it.  */
664 SCM
665 ly_list_qsort_uniq_x (SCM lst)
666 {
667   int len = scm_ilength (lst);
668   SCM *arr = new SCM[len];
669   int k = 0;
670   for (SCM s = lst; SCM_NNULLP (s); s = scm_cdr (s))
671     arr[k++] = scm_car (s);
672
673   assert (k == len);
674   qsort (arr, len, sizeof (SCM), &scm_default_compare);
675
676   SCM *tail = &lst;
677   for (int i = 0; i < len; i++)
678     if (!i || arr[i] != arr[i - 1])
679       {
680         SCM_SETCAR (*tail, arr[i]);
681         tail = SCM_CDRLOC (*tail);
682       }
683
684   *tail = SCM_EOL;
685   delete[] arr;
686
687   return lst; 
688 }
689
690
691 /* tail add */
692 SCM
693 ly_snoc (SCM s, SCM list)
694 {
695   return ly_append2 (list, scm_list_n (s, SCM_UNDEFINED));
696 }
697
698 /* Split list at member s, removing s.
699    Return (BEFORE . AFTER)  */
700 SCM
701 ly_split_list (SCM s, SCM list)
702 {
703   SCM before = SCM_EOL;
704   SCM after = list;
705   for (; scm_is_pair (after);)
706     {
707       SCM i = scm_car (after);
708       after = scm_cdr (after);
709       if (ly_c_equal_p (i, s))
710         break;
711       before = scm_cons (i, before);
712     }
713   return scm_cons ( scm_reverse_x (before, SCM_EOL),  after);
714   
715 }
716
717
718 void
719 taint (SCM *)
720 {
721   /*
722     nop.
723    */
724 }
725
726 /*
727   display stuff without using stack
728  */
729 SCM
730 display_list (SCM s)
731 {
732   SCM p = scm_current_output_port ();
733
734   scm_puts ("(", p);
735   for (; scm_is_pair (s); s = scm_cdr (s))
736     {
737       scm_display (scm_car (s), p);
738       scm_puts (" ", p);      
739     }
740   scm_puts (")", p);
741   return SCM_UNSPECIFIED;
742 }
743
744 Slice
745 int_list_to_slice (SCM l)
746 {
747   Slice s;
748   s.set_empty ();
749   for (; scm_is_pair (l); l = scm_cdr (l))
750     if (scm_is_number (scm_car (l)))
751       s.add_point (scm_to_int (scm_car (l))); 
752   return s;
753 }
754
755 /* Return I-th element, or last elt L. If I < 0, then we take the first
756    element.
757    
758    PRE: length (L) > 0  */
759 SCM
760 robust_list_ref (int i, SCM l)
761 {
762   while (i-- > 0 && scm_is_pair (scm_cdr (l)))
763     l = scm_cdr (l);
764   return scm_car (l);
765 }
766
767 Real
768 robust_scm2double (SCM k, double x)
769 {
770   if (scm_is_number (k))
771     x = scm_to_double (k);
772   return x;
773 }
774
775 Interval
776 robust_scm2interval (SCM k, Drul_array<Real> v)
777 {
778   Interval i;
779   i[LEFT]= v[LEFT];
780   i[RIGHT]= v[RIGHT];
781   if (is_number_pair (k))
782     i = ly_scm2interval (k);
783   return i;
784 }
785
786 Drul_array<Real>
787 robust_scm2drul (SCM k, Drul_array<Real> v)
788 {
789   if (is_number_pair (k))
790     v = ly_scm2interval (k);
791   return v;
792 }
793
794 Offset
795 robust_scm2offset (SCM k, Offset o)
796 {
797   if (is_number_pair (k))
798     o = ly_scm2offset (k);
799   return o;
800 }
801
802 int
803 robust_scm2int (SCM k, int o)
804 {
805   if (scm_integer_p (k) == SCM_BOOL_T)
806     o = scm_to_int (k);
807   return o;
808 }
809
810 SCM
811 alist_to_hashq (SCM alist)
812 {
813   int i = scm_ilength (alist);
814   if (i < 0)
815     return scm_c_make_hash_table (0);
816           
817   SCM tab = scm_c_make_hash_table (i);
818   for (SCM s = alist; scm_is_pair (s); s = scm_cdr (s))
819     {
820       SCM pt = scm_cdar (s);
821       scm_hashq_set_x (tab, scm_caar (s), pt);
822     }
823   return tab; 
824 }
825
826 #if 1
827 /*
828   Debugging mem leaks:
829  */
830 LY_DEFINE (ly_protects, "ly:protects",
831            0, 0, 0, (),
832           "Return hash of protected objects.")
833 {
834   return scm_protects;
835 }
836 #endif
837
838
839 #if HAVE_PANGO_FC_FONT_MAP_ADD_DECODER_FIND_FUNC
840
841 #include "pangofc-afm-decoder.hh"
842
843 LY_DEFINE (ly_pango_add_afm_decoder, "ly:pango-add-afm-decoder",
844            1, 0, 0, (SCM font_family),
845            "Add pango afm decoder for FONT-FAMILY.")
846 {
847   SCM_ASSERT_TYPE (scm_is_string (font_family), font_family, SCM_ARG1,
848                    __FUNCTION__, "font_family");
849   pango_fc_afm_add_decoder (ly_scm2newstr (font_family, 0));
850   return SCM_UNSPECIFIED;
851 }
852
853 #endif
854
855 LY_DEFINE (ly_gettext, "ly:gettext",
856            1, 0, 0, (SCM string),
857            "Gettext wrapper.")
858 {
859   SCM_ASSERT_TYPE (scm_is_string (string), string, SCM_ARG1,
860                    __FUNCTION__, "string");
861   return scm_makfrom0str (gettext (scm_i_string_chars (string)));
862 }
863