gnuastro-commits
[Top][All Lists]
Advanced

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

[gnuastro-commits] master 1b259a6c: Make (text-contains): removed some e


From: Mohammad Akhlaghi
Subject: [gnuastro-commits] master 1b259a6c: Make (text-contains): removed some extra debugging prints
Date: Fri, 2 Sep 2022 07:03:33 -0400 (EDT)

branch: master
commit 1b259a6cc3f290a020cc817b0fbeec5a94e87e12
Author: Mohammad Akhlaghi <mohammad@akhlaghi.org>
Commit: Mohammad Akhlaghi <mohammad@akhlaghi.org>

    Make (text-contains): removed some extra debugging prints
    
    Until now (in the last commit), some debugging commands had remained which
    would get printed on every invocation of the command!
    
    With this commit, they have been removed.
---
 lib/makeplugin.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/makeplugin.c b/lib/makeplugin.c
index 354530af..3d7f838a 100644
--- a/lib/makeplugin.c
+++ b/lib/makeplugin.c
@@ -78,9 +78,6 @@ makeplugin_text_contains(const char *caller, unsigned int 
argc,
   char *match=argv[0]; /* No trimming the white space before/after, as in */
   gal_list_str_t *strings=gal_list_str_extract(argv[1]); /* Make itself.  */
 
-  printf("%s: HERE\n", __func__);
-  gal_list_str_print(strings);
-
   /* Parse the input strings and find the ones that match. */
   for(tmp=strings; tmp!=NULL; tmp=tmp->next)
     if( gal_txt_contains_string(tmp->v, match) )



reply via email to

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