guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile srcprop.h srcprop.c


From: Marius Vollmer
Subject: guile/guile-core/libguile srcprop.h srcprop.c
Date: Sun, 24 Jun 2001 17:55:36 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/06/24 17:55:36

Modified files:
        guile-core/libguile: srcprop.h srcprop.c 

Log message:
        (scm_srcprops_to_plist): Renamed from scm_t_srcpropso_plist.  See the
        big type renaming.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/srcprop.h.diff?cvsroot=OldCVS&tr1=1.24&tr2=1.25&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/srcprop.c.diff?cvsroot=OldCVS&tr1=1.49&tr2=1.50&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/srcprop.c
diff -u guile/guile-core/libguile/srcprop.c:1.49 
guile/guile-core/libguile/srcprop.c:1.50
--- guile/guile-core/libguile/srcprop.c:1.49    Thu Jun 14 12:50:43 2001
+++ guile/guile-core/libguile/srcprop.c Sun Jun 24 17:55:36 2001
@@ -112,7 +112,7 @@
   int writingp = SCM_WRITINGP (pstate);
   scm_puts ("#<srcprops ", port);
   SCM_SET_WRITINGP (pstate, 1);
-  scm_iprin1 (scm_t_srcpropso_plist (obj), port, pstate);
+  scm_iprin1 (scm_srcprops_to_plist (obj), port, pstate);
   SCM_SET_WRITINGP (pstate, writingp);
   scm_putc ('>', port);
   return 1;
@@ -154,7 +154,7 @@
 
 
 SCM
-scm_t_srcpropso_plist (SCM obj)
+scm_srcprops_to_plist (SCM obj)
 {
   SCM plist = SRCPROPPLIST (obj);
   if (!SCM_UNBNDP (SRCPROPCOPY (obj)))
@@ -182,7 +182,7 @@
 #endif
   p = scm_hashq_ref (scm_source_whash, obj, SCM_BOOL_F);
   if (SRCPROPSP (p))
-    return scm_t_srcpropso_plist (p);
+    return scm_srcprops_to_plist (p);
   return SCM_EOL;
 }
 #undef FUNC_NAME
Index: guile/guile-core/libguile/srcprop.h
diff -u guile/guile-core/libguile/srcprop.h:1.24 
guile/guile-core/libguile/srcprop.h:1.25
--- guile/guile-core/libguile/srcprop.h:1.24    Thu Jun 14 12:50:43 2001
+++ guile/guile-core/libguile/srcprop.h Sun Jun 24 17:55:36 2001
@@ -137,7 +137,7 @@
 
 
 
-extern SCM scm_t_srcpropso_plist (SCM obj);
+extern SCM scm_srcprops_to_plist (SCM obj);
 extern SCM scm_make_srcprops (long line, int col, SCM fname, SCM copy, SCM 
plist);
 extern SCM scm_source_property (SCM obj, SCM key);
 extern SCM scm_set_source_property_x (SCM obj, SCM key, SCM datum);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]