From 4bb9ba0e8331c149c5ac55ccd1f1cafe08342352 Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Thu, 2 Jun 2016 11:17:49 +0200 Subject: [PATCH] Use Unicode, don't restrict ourselves to ASCII --- src/html.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/html.c b/src/html.c index a9b638ea0..b3acff0de 100644 --- a/src/html.c +++ b/src/html.c @@ -1,6 +1,6 @@ /* - * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team + * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client + * Copyright (C) 1999-2016 Hiroyuki Yamamoto and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,7 +14,6 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see . - * */ #include @@ -27,8 +26,8 @@ #include "utils.h" #define SC_HTMLBUFSIZE 8192 -#define HR_STR "------------------------------------------------" -#define LI_STR "- " +#define HR_STR "────────────────────────────────────────────────" +#define LI_STR "• " typedef struct _SC_HTMLSymbol SC_HTMLSymbol; -- 2.25.1