Core, mceditor, mcviewer and mcdiffviewer code tweak and cleanup

...in case of build with --disable-charset option.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2012-04-30 15:52:39 +04:00
parent 315c499c09
commit e7fb3526f3
25 changed files with 112 additions and 112 deletions

View File

@ -29,8 +29,6 @@
#include <config.h> #include <config.h>
#ifdef HAVE_CHARSET
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
@ -52,6 +50,8 @@ const char *cp_source = NULL;
/*** file scope macro definitions ****************************************************************/ /*** file scope macro definitions ****************************************************************/
#define UNKNCHAR '\001'
#define OTHER_8BIT "Other_8_bit" #define OTHER_8BIT "Other_8_bit"
/* /*
@ -571,5 +571,3 @@ convert_from_8bit_to_utf_c2 (const char input_char)
} }
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
#endif /* HAVE_CHARSET */

View File

@ -5,24 +5,11 @@
#ifndef MC__CHARSETS_H #ifndef MC__CHARSETS_H
#define MC__CHARSETS_H #define MC__CHARSETS_H
#include "lib/global.h"
/*** typedefs(not structures) and defined constants **********************************************/ /*** typedefs(not structures) and defined constants **********************************************/
#ifdef HAVE_CHARSET
#define UNKNCHAR '\001'
#else
#define convert_to_display_c(c) (c)
#define convert_from_input_c(c) (c)
#define convert_to_display(str) do {} while (0)
#define convert_from_input(str) do {} while (0)
#endif /* HAVE_CHARSET */
/*** enums ***************************************************************************************/ /*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/ /*** structures declarations (and typedefs of structures)*****************************************/
#ifdef HAVE_CHARSET
typedef struct typedef struct
{ {
@ -104,6 +91,4 @@ convert_from_input_c (int c)
return (int) conv_input[c]; return (int) conv_input[c];
} }
#endif /* HAVE_CHARSET */
#endif /* MC__CHARSETS_H */ #endif /* MC__CHARSETS_H */

View File

@ -31,8 +31,6 @@
#include "lib/search.h" #include "lib/search.h"
#include "lib/strescape.h" #include "lib/strescape.h"
#include "lib/charsets.h"
#include "internal.h" #include "internal.h"
/*** global variables ****************************************************************************/ /*** global variables ****************************************************************************/

View File

@ -33,8 +33,6 @@
#include "lib/search.h" #include "lib/search.h"
#include "lib/strescape.h" #include "lib/strescape.h"
#include "lib/charsets.h"
#include "internal.h" #include "internal.h"
/*** global variables ****************************************************************************/ /*** global variables ****************************************************************************/

View File

@ -32,9 +32,11 @@
#include "lib/global.h" #include "lib/global.h"
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/search.h" #include "lib/search.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h"
#endif
#include "internal.h" #include "internal.h"
#include "lib/charsets.h"
/*** global variables ****************************************************************************/ /*** global variables ****************************************************************************/

View File

@ -30,8 +30,6 @@
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/search.h" #include "lib/search.h"
#include "lib/charsets.h"
#include "internal.h" #include "internal.h"
/*** global variables ****************************************************************************/ /*** global variables ****************************************************************************/

View File

@ -34,8 +34,6 @@
#include "lib/search.h" #include "lib/search.h"
#include "lib/strescape.h" #include "lib/strescape.h"
#include "lib/charsets.h"
#include "internal.h" #include "internal.h"
/*** global variables ****************************************************************************/ /*** global variables ****************************************************************************/

View File

@ -32,8 +32,9 @@
#include "lib/global.h" #include "lib/global.h"
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/search.h" #include "lib/search.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "internal.h" #include "internal.h"

View File

@ -550,7 +550,9 @@ custom_canonicalize_pathname (char *path, CANON_PATH_FLAGS flags)
if (flags & CANON_PATH_REMDOUBLEDOTS) if (flags & CANON_PATH_REMDOUBLEDOTS)
{ {
#ifdef HAVE_CHARSET
const size_t enc_prefix_len = strlen (VFS_ENCODING_PREFIX); const size_t enc_prefix_len = strlen (VFS_ENCODING_PREFIX);
#endif /* HAVE_CHARSET */
/* Collapse "/.." with the previous part of path */ /* Collapse "/.." with the previous part of path */
p = lpath; p = lpath;

View File

@ -31,7 +31,9 @@
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/tty/key.h" #include "lib/tty/key.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/history.h" #include "src/history.h"

View File

@ -43,7 +43,9 @@
#include "lib/util.h" #include "lib/util.h"
#include "lib/widget.h" #include "lib/widget.h"
#include "lib/strutil.h" #include "lib/strutil.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "lib/event.h" /* mc_event_raise() */ #include "lib/event.h" /* mc_event_raise() */
#include "src/filemanager/cmd.h" /* do_edit_at_line(), view_other_cmd() */ #include "src/filemanager/cmd.h" /* do_edit_at_line(), view_other_cmd() */
@ -52,7 +54,9 @@
#include "src/keybind-defaults.h" #include "src/keybind-defaults.h"
#include "src/history.h" #include "src/history.h"
#ifdef HAVE_CHARSET
#include "src/selcodepage.h" #include "src/selcodepage.h"
#endif
#include "ydiff.h" #include "ydiff.h"
#include "internal.h" #include "internal.h"
@ -142,16 +146,14 @@ dview_set_codeset (WDiff * dview)
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
#ifdef HAVE_CHARSET
static void static void
dview_select_encoding (WDiff * dview) dview_select_encoding (WDiff * dview)
{ {
#ifdef HAVE_CHARSET
if (do_select_codepage ()) if (do_select_codepage ())
dview_set_codeset (dview); dview_set_codeset (dview);
#else
(void) dview;
#endif
} }
#endif /* HAVE_CHARSET */
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
@ -2602,8 +2604,8 @@ dview_display_file (const WDiff * dview, int ord, int r, int c, int height, int
next_ch = next_ch =
convert_from_utf_to_current_c (next_ch, dview->converter); convert_from_utf_to_current_c (next_ch, dview->converter);
else else
#endif
next_ch = convert_to_display_c (next_ch); next_ch = convert_to_display_c (next_ch);
#endif
tty_print_anychar (next_ch); tty_print_anychar (next_ch);
col++; col++;
@ -2678,8 +2680,8 @@ dview_display_file (const WDiff * dview, int ord, int r, int c, int height, int
else if (dview->utf8) else if (dview->utf8)
next_ch = convert_from_utf_to_current_c (next_ch, dview->converter); next_ch = convert_from_utf_to_current_c (next_ch, dview->converter);
else else
#endif
next_ch = convert_to_display_c (next_ch); next_ch = convert_to_display_c (next_ch);
#endif
tty_print_anychar (next_ch); tty_print_anychar (next_ch);
col++; col++;
@ -3160,7 +3162,9 @@ dview_handle_key (WDiff * dview, int key)
{ {
unsigned long command; unsigned long command;
#ifdef HAVE_CHARSET
key = convert_from_input_c (key); key = convert_from_input_c (key);
#endif
command = keybind_lookup_keymap_command (diff_map, key); command = keybind_lookup_keymap_command (diff_map, key);
if ((command != CK_IgnoreKey) && (dview_execute_cmd (dview, command) == MSG_HANDLED)) if ((command != CK_IgnoreKey) && (dview_execute_cmd (dview, command) == MSG_HANDLED))

View File

@ -60,13 +60,17 @@
#include "lib/util.h" /* tilde_expand() */ #include "lib/util.h" /* tilde_expand() */
#include "lib/vfs/vfs.h" #include "lib/vfs/vfs.h"
#include "lib/widget.h" #include "lib/widget.h"
#include "lib/charsets.h"
#include "lib/event.h" /* mc_event_raise() */ #include "lib/event.h" /* mc_event_raise() */
#ifdef HAVE_CHARSET
#include "lib/charsets.h"
#endif
#include "src/history.h" #include "src/history.h"
#include "src/setup.h" /* option_tab_spacing */ #include "src/setup.h" /* option_tab_spacing */
#include "src/main.h" /* mactos_t */ #include "src/main.h" /* mactos_t */
#ifdef HAVE_CHARSET
#include "src/selcodepage.h" #include "src/selcodepage.h"
#endif
#include "src/keybind-defaults.h" #include "src/keybind-defaults.h"
#include "src/util.h" /* check_for_default() */ #include "src/util.h" /* check_for_default() */
#include "src/filemanager/layout.h" /* mc_refresh() */ #include "src/filemanager/layout.h" /* mc_refresh() */

View File

@ -32,7 +32,9 @@
#include "lib/search.h" #include "lib/search.h"
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/main.h" #include "src/main.h"
#include "src/history.h" #include "src/history.h"

View File

@ -48,7 +48,10 @@
#include "lib/skin.h" #include "lib/skin.h"
#include "lib/strutil.h" /* utf string functions */ #include "lib/strutil.h" /* utf string functions */
#include "lib/util.h" /* is_printable() */ #include "lib/util.h" /* is_printable() */
#include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/setup.h" /* edit_tab_spacing */ #include "src/setup.h" /* edit_tab_spacing */
#include "src/main.h" /* macro_index */ #include "src/main.h" /* macro_index */
@ -729,8 +732,8 @@ edit_draw_this_line (WEdit * edit, long b, long row, long start_col, long end_co
else if (edit->utf8) else if (edit->utf8)
c = convert_from_utf_to_current_c (c, edit->converter); c = convert_from_utf_to_current_c (c, edit->converter);
else else
#endif
c = convert_to_display_c (c); c = convert_to_display_c (c);
#endif
/* Caret notation for control characters */ /* Caret notation for control characters */
if (c < 32) if (c < 32)

View File

@ -47,7 +47,9 @@
#include "lib/tty/key.h" /* KEY_M_SHIFT */ #include "lib/tty/key.h" /* KEY_M_SHIFT */
#include "lib/strutil.h" /* str_isutf8 () */ #include "lib/strutil.h" /* str_isutf8 () */
#include "lib/util.h" /* is_printable() */ #include "lib/util.h" /* is_printable() */
#include "lib/charsets.h" /* convert_from_input_c() */ #ifdef HAVE_CHARSET
#include "lib/charsets.h"
#endif
#include "edit-impl.h" #include "edit-impl.h"
#include "editwidget.h" /* WEdit */ #include "editwidget.h" /* WEdit */
@ -79,12 +81,19 @@ edit_translate_key (WEdit * edit, long x_key, int *cmd, int *ch)
{ {
unsigned long command = (unsigned long) CK_InsertChar; unsigned long command = (unsigned long) CK_InsertChar;
int char_for_insertion = -1; int char_for_insertion = -1;
int c;
/* an ordinary insertable character */ /* an ordinary insertable character */
if (!edit->extmod && x_key < 256) if (!edit->extmod && x_key < 256)
{ {
#ifdef HAVE_CHARSET #ifndef HAVE_CHARSET
if (is_printable (x_key))
{
char_for_insertion = x_key;
goto fin;
}
#else
int c;
if (edit->charpoint >= 4) if (edit->charpoint >= 4)
{ {
edit->charpoint = 0; edit->charpoint = 0;
@ -100,46 +109,38 @@ edit_translate_key (WEdit * edit, long x_key, int *cmd, int *ch)
if (!mc_global.utf8_display) if (!mc_global.utf8_display)
{ {
/* source in 8-bit codeset */ /* source in 8-bit codeset */
c = convert_from_input_c (x_key);
if (is_printable (c))
{
if (!edit->utf8) if (!edit->utf8)
{
#endif /* HAVE_CHARSET */
c = convert_from_input_c (x_key);
if (is_printable (c))
{
char_for_insertion = c; char_for_insertion = c;
goto fin;
}
#ifdef HAVE_CHARSET
}
else else
{
c = convert_from_input_c (x_key);
if (is_printable (c))
{
char_for_insertion = convert_from_8bit_to_utf_c2 ((unsigned char) x_key); char_for_insertion = convert_from_8bit_to_utf_c2 ((unsigned char) x_key);
goto fin; goto fin;
} }
} }
/* UTF-8 locale */
}
else else
{ {
/* source in UTF-8 codeset */ /* UTF-8 locale */
if (edit->utf8) int res;
{
int res = str_is_valid_char (edit->charbuf, edit->charpoint); res = str_is_valid_char (edit->charbuf, edit->charpoint);
if (res < 0) if (res < 0 && res != -2)
{
if (res != -2)
{ {
edit->charpoint = 0; /* broken multibyte char, skip */ edit->charpoint = 0; /* broken multibyte char, skip */
goto fin; goto fin;
} }
if (edit->utf8)
{
/* source in UTF-8 codeset */
if (res < 0)
{
char_for_insertion = x_key; char_for_insertion = x_key;
goto fin; goto fin;
} }
else
{
edit->charbuf[edit->charpoint] = '\0'; edit->charbuf[edit->charpoint] = '\0';
edit->charpoint = 0; edit->charpoint = 0;
if (g_unichar_isprint (g_utf8_get_char (edit->charbuf))) if (g_unichar_isprint (g_utf8_get_char (edit->charbuf)))
@ -148,24 +149,15 @@ edit_translate_key (WEdit * edit, long x_key, int *cmd, int *ch)
goto fin; goto fin;
} }
} }
/* 8-bit source */
}
else else
{ {
int res = str_is_valid_char (edit->charbuf, edit->charpoint); /* 8-bit source */
if (res < 0) if (res < 0)
{ {
if (res != -2)
{
edit->charpoint = 0; /* broken multibyte char, skip */
goto fin;
}
/* not finised multibyte input (in meddle multibyte utf-8 char) */ /* not finised multibyte input (in meddle multibyte utf-8 char) */
goto fin; goto fin;
} }
else
{
if (g_unichar_isprint (g_utf8_get_char (edit->charbuf))) if (g_unichar_isprint (g_utf8_get_char (edit->charbuf)))
{ {
c = convert_from_utf_to_current (edit->charbuf); c = convert_from_utf_to_current (edit->charbuf);
@ -174,12 +166,12 @@ edit_translate_key (WEdit * edit, long x_key, int *cmd, int *ch)
char_for_insertion = c; char_for_insertion = c;
goto fin; goto fin;
} }
/* unprinteble utf input, skip it */ /* unprinteble utf input, skip it */
edit->charbuf[0] = '\0'; edit->charbuf[0] = '\0';
edit->charpoint = 0; edit->charpoint = 0;
} }
} }
}
#endif /* HAVE_CHARSET */ #endif /* HAVE_CHARSET */
} }

View File

@ -46,7 +46,9 @@
#include "lib/util.h" #include "lib/util.h"
#include "lib/vfs/vfs.h" #include "lib/vfs/vfs.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" /* get_codepage_index */ #include "lib/charsets.h" /* get_codepage_index */
#endif
#include "src/setup.h" /* use_file_to_check_type */ #include "src/setup.h" /* use_file_to_check_type */
#include "src/execute.h" #include "src/execute.h"
@ -601,7 +603,9 @@ regex_check_type (const vfs_path_t * filename_vpath, const char *ptr, int *have_
/* Following variables are valid if *have_type is 1 */ /* Following variables are valid if *have_type is 1 */
static char content_string[2048]; static char content_string[2048];
#ifdef HAVE_CHARSET
static char encoding_id[21]; /* CSISO51INISCYRILLIC -- 20 */ static char encoding_id[21]; /* CSISO51INISCYRILLIC -- 20 */
#endif
static size_t content_shift = 0; static size_t content_shift = 0;
static int got_data = 0; static int got_data = 0;

View File

@ -58,7 +58,9 @@
#include "src/setup.h" /* For loading/saving panel options */ #include "src/setup.h" /* For loading/saving panel options */
#include "src/execute.h" #include "src/execute.h"
#ifdef HAVE_CHARSET
#include "src/selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */ #include "src/selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */
#endif
#include "src/keybind-defaults.h" /* global_keymap_t */ #include "src/keybind-defaults.h" /* global_keymap_t */
#include "src/subshell.h" /* do_subshell_chdir() */ #include "src/subshell.h" /* do_subshell_chdir() */

View File

@ -31,8 +31,6 @@
#include <config.h> #include <config.h>
#ifdef HAVE_CHARSET
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@ -176,5 +174,3 @@ do_select_codepage (void)
} }
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
#endif /* HAVE_CHARSET */

View File

@ -55,7 +55,9 @@
#include "lib/lock.h" /* lock_file() */ #include "lib/lock.h" /* lock_file() */
#include "lib/util.h" #include "lib/util.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "lib/event.h" /* mc_event_raise() */ #include "lib/event.h" /* mc_event_raise() */
#include "src/filemanager/layout.h" #include "src/filemanager/layout.h"
@ -513,7 +515,9 @@ mcview_handle_key (mcview_t * view, int key)
{ {
unsigned long command; unsigned long command;
#ifdef HAVE_CHARSET
key = convert_from_input_c (key); key = convert_from_input_c (key);
#endif
if (view->hex_mode) if (view->hex_mode)
{ {

View File

@ -43,7 +43,9 @@
#include "lib/search.h" #include "lib/search.h"
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/history.h" #include "src/history.h"

View File

@ -47,7 +47,9 @@
#include "lib/lock.h" /* lock_file() and unlock_file() */ #include "lib/lock.h" /* lock_file() and unlock_file() */
#include "lib/util.h" #include "lib/util.h"
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "internal.h" #include "internal.h"
@ -72,6 +74,7 @@ static const char hex_char[] = "0123456789ABCDEF";
/*** file scope functions ************************************************************************/ /*** file scope functions ************************************************************************/
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
#ifdef HAVE_CHARSET
static int static int
utf8_to_int (char *str, int *char_width, gboolean * result) utf8_to_int (char *str, int *char_width, gboolean * result)
{ {
@ -114,6 +117,7 @@ utf8_to_int (char *str, int *char_width, gboolean * result)
*char_width = width; *char_width = width;
return ch; return ch;
} }
#endif /* HAVE_CHARSET */
/* --------------------------------------------------------------------------------------------- */ /* --------------------------------------------------------------------------------------------- */
/*** public functions ****************************************************************************/ /*** public functions ****************************************************************************/
@ -139,7 +143,9 @@ mcview_display_hex (mcview_t * view)
int c; int c;
mark_t boldflag = MARK_NORMAL; mark_t boldflag = MARK_NORMAL;
struct hexedit_change_node *curr = view->change_list; struct hexedit_change_node *curr = view->change_list;
#ifdef HAVE_CHARSET
int ch = 0; int ch = 0;
#endif /* HAVE_CHARSET */
char hex_buff[10]; /* A temporary buffer for sprintf and mvwaddstr */ char hex_buff[10]; /* A temporary buffer for sprintf and mvwaddstr */
int bytes; /* Number of bytes already printed on the line */ int bytes; /* Number of bytes already printed on the line */
@ -202,7 +208,7 @@ mcview_display_hex (mcview_t * view)
curr = corr; curr = corr;
} }
} }
#endif #endif /* HAVE_CHARSET */
if (!mcview_get_byte (view, from, &c)) if (!mcview_get_byte (view, from, &c))
break; break;
@ -297,7 +303,9 @@ mcview_display_hex (mcview_t * view)
else else
#endif #endif
{ {
#ifdef HAVE_CHARSET
c = convert_to_display_c (c); c = convert_to_display_c (c);
#endif
if (!is_printable (c)) if (!is_printable (c))
c = '.'; c = '.';
@ -312,10 +320,8 @@ mcview_display_hex (mcview_t * view)
tty_print_anychar (ch); tty_print_anychar (ch);
else else
#endif #endif
{
tty_print_char (c); tty_print_char (c);
} }
}
/* Save the cursor position for mcview_place_cursor() */ /* Save the cursor position for mcview_place_cursor() */
if (from == view->hex_cursor && view->hexview_in_text) if (from == view->hex_cursor && view->hexview_in_text)

View File

@ -44,10 +44,14 @@
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/util.h" /* save_file_position() */ #include "lib/util.h" /* save_file_position() */
#include "lib/widget.h" #include "lib/widget.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/main.h" #include "src/main.h"
#ifdef HAVE_CHARSET
#include "src/selcodepage.h" #include "src/selcodepage.h"
#endif
#include "internal.h" #include "internal.h"
#include "mcviewer.h" #include "mcviewer.h"

View File

@ -45,7 +45,6 @@
#include "lib/strutil.h" #include "lib/strutil.h"
#include "lib/util.h" /* load_file_position() */ #include "lib/util.h" /* load_file_position() */
#include "lib/widget.h" #include "lib/widget.h"
#include "lib/charsets.h"
#include "src/main.h" #include "src/main.h"

View File

@ -39,7 +39,9 @@
#include "lib/global.h" #include "lib/global.h"
#include "lib/tty/tty.h" #include "lib/tty/tty.h"
#include "lib/skin.h" #include "lib/skin.h"
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/setup.h" /* option_tab_spacing */ #include "src/setup.h" /* option_tab_spacing */
@ -227,19 +229,10 @@ mcview_display_nroff (mcview_t * view)
if (!g_unichar_isprint (c)) if (!g_unichar_isprint (c))
c = '.'; c = '.';
} }
else else if (view->utf8)
{
if (view->utf8)
{
c = convert_from_utf_to_current_c (c, view->converter); c = convert_from_utf_to_current_c (c, view->converter);
}
else else
{
#endif
c = convert_to_display_c (c); c = convert_to_display_c (c);
#ifdef HAVE_CHARSET
}
}
#endif #endif
tty_print_anychar (c); tty_print_anychar (c);
} }

View File

@ -40,7 +40,9 @@
#include "lib/tty/tty.h" #include "lib/tty/tty.h"
#include "lib/skin.h" #include "lib/skin.h"
#include "lib/util.h" /* is_printable() */ #include "lib/util.h" /* is_printable() */
#ifdef HAVE_CHARSET
#include "lib/charsets.h" #include "lib/charsets.h"
#endif
#include "src/setup.h" /* option_tab_spacing */ #include "src/setup.h" /* option_tab_spacing */
@ -168,8 +170,9 @@ mcview_display_text (mcview_t * view)
else else
#endif #endif
{ {
#ifdef HAVE_CHARSET
c = convert_to_display_c (c); c = convert_to_display_c (c);
#endif
if (!is_printable (c)) if (!is_printable (c))
c = '.'; c = '.';
} }