]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input-smob.cc
2002-07-13 Han-Wen <hanwen@cs.uu.nl>
[lilypond.git] / lily / input-smob.cc
index af9180a744f58a534028bc775de1b0d08c0c0a43..0ea9b3664c434f87809e9b9a1c70e4835b6d7ec2 100644 (file)
@@ -39,14 +39,16 @@ free_smob (SCM s)
   We don't use IMPLEMENT_TYPE_P, since the smobification part is
   implemented separately from the class.
  */
-SCM
-ly_input_p (SCM x)
+LY_DEFINE(ly_input_p, "ly-input-location?", 1, 0, 0,
+         (SCM x),
+         "Return whether @var{x} is an input location")
 {
   return unsmob_input (x) ? SCM_BOOL_T : SCM_BOOL_F ;
 }
 
-SCM
-ly_input_message (SCM sip, SCM msg)
+LY_DEFINE(ly_input_message,  "ly-input-message", 2, 0, 0, (SCM sip, SCM msg),
+         "Print @var{msg} as a GNU compliant error message, pointing to the
+location in @var{sip}.")
 {
   Input *ip  = unsmob_input(sip);
   
@@ -70,10 +72,6 @@ start_input_smobs ()
   scm_set_smob_equalp (input_tag, 0);
 
   
-  scm_c_define_gsubr ("ly-input-location?", 1, 0, 0,
-                     (Scheme_function_unknown)ly_input_p);
-  scm_c_define_gsubr ("ly-input-message", 2, 0, 0,
-                     (Scheme_function_unknown)ly_input_message);
 }
 
 SCM
@@ -82,10 +80,7 @@ make_input (Input ip)
   Input * nip =  new Input (ip);
   SCM z;
   
-  SCM_NEWCELL (z);
-  SCM_SETCAR (z, (SCM)input_tag);
-  SCM_SETCDR (z, (SCM)nip);
-                               // fixme: done_malloc
+  SCM_NEWSMOB (z, input_tag, nip);
   return z;
 }