Changeset: 3f78c4e6da6a for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/3f78c4e6da6a
Modified Files:
        sql/backends/monet5/copy_misc.c
Branch: pp_hashjoin
Log Message:

Avoid non-ASCII in the source code.


diffs (20 lines):

diff --git a/sql/backends/monet5/copy_misc.c b/sql/backends/monet5/copy_misc.c
--- a/sql/backends/monet5/copy_misc.c
+++ b/sql/backends/monet5/copy_misc.c
@@ -19,13 +19,13 @@ static void
 dump_char(int c)
 {
        if (c == '\n')
-               fprintf(stderr, "⏎");
+               fprintf(stderr, "\342\217\216"); /* return symbol */
        else if (isspace(c))
-               fprintf(stderr, "·");
+               fprintf(stderr, "\302\\267"); /* middle dot */
        else if (isprint(c)) {
                fprintf(stderr, "%c", c);
        } else {
-               fprintf(stderr, "░");
+               fprintf(stderr, "\342\226\221"); /* light shade */
        }
 }
 
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to