[gimp/osx-build: 1/55] Minor cosmetic cleanup: fix C style comments



commit 0e951ee35ff8a99b78e4ec9243daa6b9e1f85e29
Author: Sven Claussner <sclaussner src gnome org>
Date:   Fri Jul 18 07:20:30 2014 +0200

    Minor cosmetic cleanup: fix C style comments
    
    Replace C++ and Java style comments by C style comments.

 plug-ins/metadata/metadata.c           |    2 +-
 plug-ins/pygimp/gimpmodule.c           |    8 ++++----
 plug-ins/script-fu/tinyscheme/scheme.c |    2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/plug-ins/metadata/metadata.c b/plug-ins/metadata/metadata.c
index cf37a83..7fe8e79 100644
--- a/plug-ins/metadata/metadata.c
+++ b/plug-ins/metadata/metadata.c
@@ -198,7 +198,7 @@ query (void)
                           editor_args, NULL);
 
   gimp_plugin_menu_register (EDITOR_PROC, "<Image>/File/Info");
-  // XXX gimp_plugin_icon_register (EDITOR_PROC, GIMP_ICON_TYPE_STOCK_ID,
+  /* XXX gimp_plugin_icon_register (EDITOR_PROC, GIMP_ICON_TYPE_STOCK_ID,*/
 
   gimp_install_procedure (DECODE_XMP_PROC,
                           "Decode an XMP packet",
diff --git a/plug-ins/pygimp/gimpmodule.c b/plug-ins/pygimp/gimpmodule.c
index ccc2ecb..560f398 100644
--- a/plug-ins/pygimp/gimpmodule.c
+++ b/plug-ins/pygimp/gimpmodule.c
@@ -188,10 +188,10 @@ pygimp_main(PyObject *self, PyObject *args)
     PyObject *av;
     int argc, i;
     char **argv;
-    PyObject *ip;  // init proc
-    PyObject *qp;  // quit proc
-    PyObject *query;  // query proc
-    PyObject *rp;  // run proc
+    PyObject *ip;  /* init proc */
+    PyObject *qp;  /* quit proc */
+    PyObject *query;  /* query proc */
+    PyObject *rp;  /* run proc */
 
     if (!PyArg_ParseTuple(args, "OOOO:main", &ip, &qp, &query, &rp))
         return NULL;
diff --git a/plug-ins/script-fu/tinyscheme/scheme.c b/plug-ins/script-fu/tinyscheme/scheme.c
index 1d288f5..b07f15c 100644
--- a/plug-ins/script-fu/tinyscheme/scheme.c
+++ b/plug-ins/script-fu/tinyscheme/scheme.c
@@ -2132,7 +2132,7 @@ static void atom2str(scheme *sc, pointer l, int f, char **pp, int *plen) {
                /* R5RS says there must be a '.' (unless 'e'?) */
                f = strcspn(p, ".e");
                if (p[f] == 0) {
-                    p[f] = '.'; // not found, so add '.0' at the end
+                    p[f] = '.'; /* not found, so add '.0' at the end */
                     p[f+1] = '0';
                     p[f+2] = 0;
                }


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