mirror of https://github.com/MidnightCommander/mc
2004-09-24 Roland Illig <roland.illig@gmx.de>
* boxes.c: Replaced NULL with (char *) NULL. Likewise for 0, where NULL was meant. * cmd.c: Likewise. * dialog.c: Likewise. * ext.c: Likewise. * file.c: Likewise. * find.c: Likewise. * hotlist.c: Likewise. * learn.c: Likewise. * main.c: Likewise. * screen.c: Likewise. * setup.c: Likewise. * treestore.c: Likewise. * user.c: Likewise. * util.c: Likewise. * utilunix.c: Likewise. * view.c: Likewise. * widget.c: Likewise. * wtools.c: Likewise.
This commit is contained in:
parent
9c65d36bdd
commit
11842a375f
|
@ -1,3 +1,25 @@
|
||||||
|
2004-09-24 Roland Illig <roland.illig@gmx.de>
|
||||||
|
|
||||||
|
* boxes.c: Replaced NULL with (char *) NULL. Likewise for 0, where
|
||||||
|
NULL was meant.
|
||||||
|
* cmd.c: Likewise.
|
||||||
|
* dialog.c: Likewise.
|
||||||
|
* ext.c: Likewise.
|
||||||
|
* file.c: Likewise.
|
||||||
|
* find.c: Likewise.
|
||||||
|
* hotlist.c: Likewise.
|
||||||
|
* learn.c: Likewise.
|
||||||
|
* main.c: Likewise.
|
||||||
|
* screen.c: Likewise.
|
||||||
|
* setup.c: Likewise.
|
||||||
|
* treestore.c: Likewise.
|
||||||
|
* user.c: Likewise.
|
||||||
|
* util.c: Likewise.
|
||||||
|
* utilunix.c: Likewise.
|
||||||
|
* view.c: Likewise.
|
||||||
|
* widget.c: Likewise.
|
||||||
|
* wtools.c: Likewise.
|
||||||
|
|
||||||
2004-09-24 Roland Illig <roland.illig@gmx.de>
|
2004-09-24 Roland Illig <roland.illig@gmx.de>
|
||||||
|
|
||||||
* cons.handler.c (handle_console_linux): Replaced NULL with
|
* cons.handler.c (handle_console_linux): Replaced NULL with
|
||||||
|
|
|
@ -227,7 +227,7 @@ display_box (WPanel *panel, char **userp, char **minip, int *use_msformat, int n
|
||||||
panel->user_mini_status = 0;
|
panel->user_mini_status = 0;
|
||||||
for (i = 0; i < LIST_TYPES; i++)
|
for (i = 0; i < LIST_TYPES; i++)
|
||||||
panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
|
panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
|
||||||
section = g_strconcat ("Temporal:", p, NULL);
|
section = g_strconcat ("Temporal:", p, (char *) NULL);
|
||||||
if (!profile_has_section (section, profile_name)) {
|
if (!profile_has_section (section, profile_name)) {
|
||||||
g_free (section);
|
g_free (section);
|
||||||
section = g_strdup (p);
|
section = g_strdup (p);
|
||||||
|
@ -886,7 +886,7 @@ jobs_fill_listbox (void)
|
||||||
while (tl){
|
while (tl){
|
||||||
char *s;
|
char *s;
|
||||||
|
|
||||||
s = g_strconcat (state_str [tl->state], " ", tl->info, NULL);
|
s = g_strconcat (state_str [tl->state], " ", tl->info, (char *) NULL);
|
||||||
listbox_add_item (bg_list, LISTBOX_APPEND_AT_END, 0, s, (void *) tl);
|
listbox_add_item (bg_list, LISTBOX_APPEND_AT_END, 0, s, (void *) tl);
|
||||||
g_free (s);
|
g_free (s);
|
||||||
tl = tl->next;
|
tl = tl->next;
|
||||||
|
|
|
@ -1138,9 +1138,9 @@ nice_cd (const char *text, const char *xtext, const char *help, const char *pref
|
||||||
ugly as hell and leads to problems in vfs layer */
|
ugly as hell and leads to problems in vfs layer */
|
||||||
|
|
||||||
if (strncmp (prefix, machine, strlen (prefix)) == 0)
|
if (strncmp (prefix, machine, strlen (prefix)) == 0)
|
||||||
cd_path = g_strconcat (machine, to_home ? "/~/" : NULL, NULL);
|
cd_path = g_strconcat (machine, to_home ? "/~/" : (char *) NULL, (char *) NULL);
|
||||||
else
|
else
|
||||||
cd_path = g_strconcat (prefix, machine, to_home ? "/~/" : NULL, NULL);
|
cd_path = g_strconcat (prefix, machine, to_home ? "/~/" : (char *) NULL, (char *) NULL);
|
||||||
|
|
||||||
if (do_panel_cd (MENU_PANEL, cd_path, 0))
|
if (do_panel_cd (MENU_PANEL, cd_path, 0))
|
||||||
directory_history_add (MENU_PANEL, (MENU_PANEL)->cwd);
|
directory_history_add (MENU_PANEL, (MENU_PANEL)->cwd);
|
||||||
|
@ -1200,7 +1200,7 @@ void quick_cd_cmd (void)
|
||||||
char *p = cd_dialog ();
|
char *p = cd_dialog ();
|
||||||
|
|
||||||
if (p && *p) {
|
if (p && *p) {
|
||||||
char *q = g_strconcat ("cd ", p, NULL);
|
char *q = g_strconcat ("cd ", p, (char *) NULL);
|
||||||
|
|
||||||
do_cd_command (q);
|
do_cd_command (q);
|
||||||
g_free (q);
|
g_free (q);
|
||||||
|
@ -1239,7 +1239,7 @@ save_setup_cmd (void)
|
||||||
|
|
||||||
save_setup ();
|
save_setup ();
|
||||||
sync_profiles ();
|
sync_profiles ();
|
||||||
str = g_strconcat ( _(" Setup saved to ~/"), PROFILE_NAME, NULL);
|
str = g_strconcat ( _(" Setup saved to ~/"), PROFILE_NAME, (char *) NULL);
|
||||||
|
|
||||||
message (0, _(" Setup "), str);
|
message (0, _(" Setup "), str);
|
||||||
g_free (str);
|
g_free (str);
|
||||||
|
|
|
@ -210,7 +210,7 @@ create_dlg (int y1, int x1, int lines, int cols, const int *color_set,
|
||||||
if (title) {
|
if (title) {
|
||||||
char *t;
|
char *t;
|
||||||
t = g_strstrip (g_strdup (title));
|
t = g_strstrip (g_strdup (title));
|
||||||
new_d->title = g_strconcat (" ", t, " ", NULL);
|
new_d->title = g_strconcat (" ", t, " ", (char *) NULL);
|
||||||
g_free (t);
|
g_free (t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
12
src/ext.c
12
src/ext.c
|
@ -223,7 +223,7 @@ exec_extension (const char *filename, const char *data, int *move_dir,
|
||||||
/* Set executable flag on the command file ... */
|
/* Set executable flag on the command file ... */
|
||||||
chmod (file_name, S_IRWXU);
|
chmod (file_name, S_IRWXU);
|
||||||
/* ... but don't rely on it - run /bin/sh explicitly */
|
/* ... but don't rely on it - run /bin/sh explicitly */
|
||||||
cmd = g_strconcat ("/bin/sh ", file_name, NULL);
|
cmd = g_strconcat ("/bin/sh ", file_name, (char *) NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (run_view) {
|
if (run_view) {
|
||||||
|
@ -303,7 +303,7 @@ get_file_type_local (char *filename, char *buf, int buflen)
|
||||||
int read_bytes = 0;
|
int read_bytes = 0;
|
||||||
|
|
||||||
char *tmp = name_quote (filename, 0);
|
char *tmp = name_quote (filename, 0);
|
||||||
char *command = g_strconcat (FILE_CMD, tmp, NULL);
|
char *command = g_strconcat (FILE_CMD, tmp, (char *) NULL);
|
||||||
FILE *f = popen (command, "r");
|
FILE *f = popen (command, "r");
|
||||||
|
|
||||||
g_free (tmp);
|
g_free (tmp);
|
||||||
|
@ -468,14 +468,14 @@ regex_command (const char *filename, const char *action, int *move_dir)
|
||||||
char *msg2;
|
char *msg2;
|
||||||
msg =
|
msg =
|
||||||
g_strconcat (" ", mc_home, MC_LIB_EXT,
|
g_strconcat (" ", mc_home, MC_LIB_EXT,
|
||||||
_(" file error "), NULL);
|
_(" file error "), (char *) NULL);
|
||||||
msg2 =
|
msg2 =
|
||||||
g_strconcat (_("Format of the "), mc_home,
|
g_strconcat (_("Format of the "), mc_home,
|
||||||
_("mc.ext file has changed\n"
|
_("mc.ext file has changed\n"
|
||||||
"with version 3.0. It seems that installation\n"
|
"with version 3.0. It seems that installation\n"
|
||||||
"failed. Please fetch a fresh new copy from the\n"
|
"failed. Please fetch a fresh new copy from the\n"
|
||||||
"Midnight Commander package."),
|
"Midnight Commander package."),
|
||||||
NULL);
|
(char *) NULL);
|
||||||
message (1, msg, "%s", msg2);
|
message (1, msg, "%s", msg2);
|
||||||
g_free (msg);
|
g_free (msg);
|
||||||
g_free (msg2);
|
g_free (msg2);
|
||||||
|
@ -487,7 +487,7 @@ regex_command (const char *filename, const char *action, int *move_dir)
|
||||||
char *msg;
|
char *msg;
|
||||||
char *msg2;
|
char *msg2;
|
||||||
msg =
|
msg =
|
||||||
g_strconcat (" ~/", MC_USER_EXT, _(" file error "), NULL);
|
g_strconcat (" ~/", MC_USER_EXT, _(" file error "), (char *) NULL);
|
||||||
msg2 =
|
msg2 =
|
||||||
g_strconcat (_("Format of the "), "~/", MC_USER_EXT,
|
g_strconcat (_("Format of the "), "~/", MC_USER_EXT,
|
||||||
_(" file has changed\n"
|
_(" file has changed\n"
|
||||||
|
@ -497,7 +497,7 @@ regex_command (const char *filename, const char *action, int *move_dir)
|
||||||
"file as an example of how to write it.\n"),
|
"file as an example of how to write it.\n"),
|
||||||
mc_home,
|
mc_home,
|
||||||
_("mc.ext will be used for this moment."),
|
_("mc.ext will be used for this moment."),
|
||||||
NULL);
|
(char *) NULL);
|
||||||
message (1, msg, "%s", msg2);
|
message (1, msg, "%s", msg2);
|
||||||
g_free (msg);
|
g_free (msg);
|
||||||
g_free (msg2);
|
g_free (msg2);
|
||||||
|
|
|
@ -386,11 +386,11 @@ make_symlink (FileOpContext *ctx, const char *src_path, const char *dst_path)
|
||||||
if (*dst_path == PATH_SEP)
|
if (*dst_path == PATH_SEP)
|
||||||
q = g_strdup (dst_path);
|
q = g_strdup (dst_path);
|
||||||
else
|
else
|
||||||
q = g_strconcat (p, dst_path, NULL);
|
q = g_strconcat (p, dst_path, (char *) NULL);
|
||||||
r = strrchr (q, PATH_SEP);
|
r = strrchr (q, PATH_SEP);
|
||||||
if (r) {
|
if (r) {
|
||||||
r[1] = 0;
|
r[1] = 0;
|
||||||
s = g_strconcat (p, link_target, NULL);
|
s = g_strconcat (p, link_target, (char *) NULL);
|
||||||
strcpy (link_target, s);
|
strcpy (link_target, s);
|
||||||
g_free (s);
|
g_free (s);
|
||||||
s = diff_two_paths (q, link_target);
|
s = diff_two_paths (q, link_target);
|
||||||
|
@ -2198,7 +2198,7 @@ real_query_recursive (FileOpContext *ctx, enum OperationMode mode, const char *s
|
||||||
" Delete it recursively? ")
|
" Delete it recursively? ")
|
||||||
: _("\n Background process: Directory not empty \n"
|
: _("\n Background process: Directory not empty \n"
|
||||||
" Delete it recursively? ");
|
" Delete it recursively? ");
|
||||||
text = g_strconcat (_(" Delete: "), name_trunc (s, 30), " ", NULL);
|
text = g_strconcat (_(" Delete: "), name_trunc (s, 30), " ", (char *) NULL);
|
||||||
|
|
||||||
if (safe_delete)
|
if (safe_delete)
|
||||||
query_set_sel (1);
|
query_set_sel (1);
|
||||||
|
|
|
@ -370,7 +370,7 @@ insert_file (const char *dir, const char *file)
|
||||||
dirname = add_to_list (dir, NULL);
|
dirname = add_to_list (dir, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp_name = g_strconcat (" ", file, NULL);
|
tmp_name = g_strconcat (" ", file, (char *) NULL);
|
||||||
add_to_list (tmp_name, dirname);
|
add_to_list (tmp_name, dirname);
|
||||||
g_free (tmp_name);
|
g_free (tmp_name);
|
||||||
}
|
}
|
||||||
|
@ -608,7 +608,7 @@ do_search (struct Dlg_head *h)
|
||||||
}
|
}
|
||||||
if (find_ignore_dirs){
|
if (find_ignore_dirs){
|
||||||
int found;
|
int found;
|
||||||
char *temp_dir = g_strconcat (":", tmp, ":", NULL);
|
char *temp_dir = g_strconcat (":", tmp, ":", (char *) NULL);
|
||||||
|
|
||||||
found = strstr (find_ignore_dirs, temp_dir) != 0;
|
found = strstr (find_ignore_dirs, temp_dir) != 0;
|
||||||
g_free (temp_dir);
|
g_free (temp_dir);
|
||||||
|
|
|
@ -186,7 +186,7 @@ update_path_name (void)
|
||||||
label_set_text (pname,
|
label_set_text (pname,
|
||||||
name_trunc (text, dlg->cols - (UX * 2 + 4)));
|
name_trunc (text, dlg->cols - (UX * 2 + 4)));
|
||||||
|
|
||||||
p = g_strconcat (" ", current_group->label, " ", NULL);
|
p = g_strconcat (" ", current_group->label, " ", (char *) NULL);
|
||||||
if (!hotlist_state.moving)
|
if (!hotlist_state.moving)
|
||||||
label_set_text (pname_group,
|
label_set_text (pname_group,
|
||||||
name_trunc (p, dlg->cols - (UX * 2 + 4)));
|
name_trunc (p, dlg->cols - (UX * 2 + 4)));
|
||||||
|
@ -449,7 +449,7 @@ hotlist_callback (Dlg_head *h, dlg_msg_t msg, int parm)
|
||||||
(struct hotlist *) l_hotlist->current->data;
|
(struct hotlist *) l_hotlist->current->data;
|
||||||
if (hlp->type == HL_TYPE_ENTRY) {
|
if (hlp->type == HL_TYPE_ENTRY) {
|
||||||
char *tmp =
|
char *tmp =
|
||||||
g_strconcat ("cd ", hlp->directory, NULL);
|
g_strconcat ("cd ", hlp->directory, (char *) NULL);
|
||||||
stuff (cmdline, tmp, 0);
|
stuff (cmdline, tmp, 0);
|
||||||
g_free (tmp);
|
g_free (tmp);
|
||||||
dlg_stop (h);
|
dlg_stop (h);
|
||||||
|
@ -719,7 +719,7 @@ static void hotlist_done (void)
|
||||||
static char *
|
static char *
|
||||||
find_group_section (struct hotlist *grp)
|
find_group_section (struct hotlist *grp)
|
||||||
{
|
{
|
||||||
return g_strconcat (grp->directory, ".Group", NULL);
|
return g_strconcat (grp->directory, ".Group", (char *) NULL);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -780,7 +780,7 @@ add2hotlist (char *label, char *directory, enum HotListType type, int pos)
|
||||||
|
|
||||||
if (hotlist_state.running && type != HL_TYPE_COMMENT) {
|
if (hotlist_state.running && type != HL_TYPE_COMMENT) {
|
||||||
if (type == HL_TYPE_GROUP) {
|
if (type == HL_TYPE_GROUP) {
|
||||||
char *lbl = g_strconcat ("->", new->label, NULL);
|
char *lbl = g_strconcat ("->", new->label, (char *) NULL);
|
||||||
|
|
||||||
listbox_add_item (l_hotlist, pos, 0, lbl, new);
|
listbox_add_item (l_hotlist, pos, 0, lbl, new);
|
||||||
g_free (lbl);
|
g_free (lbl);
|
||||||
|
@ -1355,7 +1355,7 @@ clean_up_hotlist_groups (const char *section)
|
||||||
void *profile_keys;
|
void *profile_keys;
|
||||||
char *key, *value;
|
char *key, *value;
|
||||||
|
|
||||||
grp_section = g_strconcat (section, ".Group", NULL);
|
grp_section = g_strconcat (section, ".Group", (char *) NULL);
|
||||||
if (profile_has_section (section, profile_name))
|
if (profile_has_section (section, profile_name))
|
||||||
profile_clean_section (section, profile_name);
|
profile_clean_section (section, profile_name);
|
||||||
if (profile_has_section (grp_section, profile_name)) {
|
if (profile_has_section (grp_section, profile_name)) {
|
||||||
|
@ -1415,7 +1415,7 @@ load_hotlist (void)
|
||||||
char *msg;
|
char *msg;
|
||||||
|
|
||||||
msg = g_strconcat (_("MC was unable to write ~/"), HOTLIST_FILENAME,
|
msg = g_strconcat (_("MC was unable to write ~/"), HOTLIST_FILENAME,
|
||||||
_(" file, your old hotlist entries were not deleted"), NULL);
|
_(" file, your old hotlist entries were not deleted"), (char *) NULL);
|
||||||
|
|
||||||
message (D_ERROR, _(" Hotlist Load "), msg);
|
message (D_ERROR, _(" Hotlist Load "), msg);
|
||||||
g_free (msg);
|
g_free (msg);
|
||||||
|
@ -1534,7 +1534,7 @@ int save_hotlist (void)
|
||||||
struct stat stat_buf;
|
struct stat stat_buf;
|
||||||
|
|
||||||
if (!hotlist_state.readonly && hotlist_state.modified && hotlist_file_name) {
|
if (!hotlist_state.readonly && hotlist_state.modified && hotlist_file_name) {
|
||||||
char *fbak = g_strconcat (hotlist_file_name, ".bak", NULL);
|
char *fbak = g_strconcat (hotlist_file_name, ".bak", (char *) NULL);
|
||||||
|
|
||||||
rename (hotlist_file_name, fbak);
|
rename (hotlist_file_name, fbak);
|
||||||
if ((hotlist_file = fopen (hotlist_file_name, "w")) != 0) {
|
if ((hotlist_file = fopen (hotlist_file_name, "w")) != 0) {
|
||||||
|
|
|
@ -306,7 +306,7 @@ learn_save (void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int profile_changed = 0;
|
int profile_changed = 0;
|
||||||
char *section = g_strconcat ("terminal:", getenv ("TERM"), NULL);
|
char *section = g_strconcat ("terminal:", getenv ("TERM"), (char *) NULL);
|
||||||
|
|
||||||
for (i = 0; i < learn_total; i++) {
|
for (i = 0; i < learn_total; i++) {
|
||||||
if (learnkeys [i].sequence != NULL) {
|
if (learnkeys [i].sequence != NULL) {
|
||||||
|
|
|
@ -2098,7 +2098,7 @@ static int
|
||||||
do_mc_filename_rename (const char *mc_dir, const char *o_name, const char *n_name)
|
do_mc_filename_rename (const char *mc_dir, const char *o_name, const char *n_name)
|
||||||
{
|
{
|
||||||
char *full_o_name = concat_dir_and_file (home_dir, o_name);
|
char *full_o_name = concat_dir_and_file (home_dir, o_name);
|
||||||
char *full_n_name = g_strconcat (home_dir, MC_BASE, n_name, NULL);
|
char *full_n_name = g_strconcat (home_dir, MC_BASE, n_name, (char *) NULL);
|
||||||
int move;
|
int move;
|
||||||
|
|
||||||
move = 0 == rename (full_o_name, full_n_name);
|
move = 0 == rename (full_o_name, full_n_name);
|
||||||
|
|
10
src/screen.c
10
src/screen.c
|
@ -901,7 +901,7 @@ panel_save_name (WPanel *panel)
|
||||||
if ((midnight_shutdown && auto_save_setup) || saving_setup)
|
if ((midnight_shutdown && auto_save_setup) || saving_setup)
|
||||||
return g_strdup (panel->panel_name);
|
return g_strdup (panel->panel_name);
|
||||||
else
|
else
|
||||||
return g_strconcat ("Temporal:", panel->panel_name, NULL);
|
return g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -963,7 +963,7 @@ panel_new (const char *panel_name)
|
||||||
mc_get_current_wd (panel->cwd, sizeof (panel->cwd) - 2);
|
mc_get_current_wd (panel->cwd, sizeof (panel->cwd) - 2);
|
||||||
strcpy (panel->lwd, ".");
|
strcpy (panel->lwd, ".");
|
||||||
|
|
||||||
panel->hist_name = g_strconcat ("Dir Hist ", panel_name, NULL);
|
panel->hist_name = g_strconcat ("Dir Hist ", panel_name, (char *) NULL);
|
||||||
panel->dir_history = history_get (panel->hist_name);
|
panel->dir_history = history_get (panel->hist_name);
|
||||||
directory_history_add (panel, panel->cwd);
|
directory_history_add (panel, panel->cwd);
|
||||||
|
|
||||||
|
@ -993,7 +993,7 @@ panel_new (const char *panel_name)
|
||||||
|
|
||||||
panel->search_buffer[0] = 0;
|
panel->search_buffer[0] = 0;
|
||||||
panel->frame_size = frame_half;
|
panel->frame_size = frame_half;
|
||||||
section = g_strconcat ("Temporal:", panel->panel_name, NULL);
|
section = g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
|
||||||
if (!profile_has_section (section, profile_name)) {
|
if (!profile_has_section (section, profile_name)) {
|
||||||
g_free (section);
|
g_free (section);
|
||||||
section = g_strdup (panel->panel_name);
|
section = g_strdup (panel->panel_name);
|
||||||
|
@ -1280,7 +1280,7 @@ parse_display_format (WPanel *panel, const char *format, char **error, int issta
|
||||||
int pos = min (8, strlen (format));
|
int pos = min (8, strlen (format));
|
||||||
delete_format (home);
|
delete_format (home);
|
||||||
tmp_format [pos] = 0;
|
tmp_format [pos] = 0;
|
||||||
*error = g_strconcat (_("Unknown tag on display format: "), tmp_format, NULL);
|
*error = g_strconcat (_("Unknown tag on display format: "), tmp_format, (char *) NULL);
|
||||||
g_free (tmp_format);
|
g_free (tmp_format);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1964,7 +1964,7 @@ do_enter_on_file_entry (file_entry *fe)
|
||||||
|
|
||||||
{
|
{
|
||||||
char *tmp = name_quote (fe->fname, 0);
|
char *tmp = name_quote (fe->fname, 0);
|
||||||
char *cmd = g_strconcat (".", PATH_SEP_STR, tmp, NULL);
|
char *cmd = g_strconcat (".", PATH_SEP_STR, tmp, (char *) NULL);
|
||||||
g_free (tmp);
|
g_free (tmp);
|
||||||
shell_execute (cmd, 0);
|
shell_execute (cmd, 0);
|
||||||
g_free (cmd);
|
g_free (cmd);
|
||||||
|
|
|
@ -527,7 +527,7 @@ load_setup (void)
|
||||||
load_string ("Misc", "find_ignore_dirs", "", setup_color_string,
|
load_string ("Misc", "find_ignore_dirs", "", setup_color_string,
|
||||||
sizeof (setup_color_string));
|
sizeof (setup_color_string));
|
||||||
if (setup_color_string [0])
|
if (setup_color_string [0])
|
||||||
find_ignore_dirs = g_strconcat (":", setup_color_string, ":", NULL);
|
find_ignore_dirs = g_strconcat (":", setup_color_string, ":", (char *) NULL);
|
||||||
|
|
||||||
/* The default color and the terminal dependent color */
|
/* The default color and the terminal dependent color */
|
||||||
load_string ("Colors", "base_color", "", setup_color_string,
|
load_string ("Colors", "base_color", "", setup_color_string,
|
||||||
|
@ -593,7 +593,7 @@ load_keys_from_section (const char *terminal, const char *profile_name)
|
||||||
if (!terminal)
|
if (!terminal)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
section_name = g_strconcat ("terminal:", terminal, NULL);
|
section_name = g_strconcat ("terminal:", terminal, (char *) NULL);
|
||||||
profile_keys = profile_init_iterator (section_name, profile_name);
|
profile_keys = profile_init_iterator (section_name, profile_name);
|
||||||
g_free (section_name);
|
g_free (section_name);
|
||||||
while (profile_keys){
|
while (profile_keys){
|
||||||
|
|
|
@ -601,7 +601,7 @@ tree_store_mark_checked(const char *subname)
|
||||||
(subname[1] == 0 || (subname[1] == '.' && subname[2] == 0)))
|
(subname[1] == 0 || (subname[1] == '.' && subname[2] == 0)))
|
||||||
return;
|
return;
|
||||||
if (ts.check_name[0] == PATH_SEP && ts.check_name[1] == 0)
|
if (ts.check_name[0] == PATH_SEP && ts.check_name[1] == 0)
|
||||||
name = g_strconcat(PATH_SEP_STR, subname, NULL);
|
name = g_strconcat(PATH_SEP_STR, subname, (char *) NULL);
|
||||||
else
|
else
|
||||||
name = concat_dir_and_file(ts.check_name, subname);
|
name = concat_dir_and_file(ts.check_name, subname);
|
||||||
|
|
||||||
|
|
|
@ -214,7 +214,7 @@ expand_format (struct WEdit *edit_widget, char c, int quote)
|
||||||
case 'k': /* block file name */
|
case 'k': /* block file name */
|
||||||
case 'b': /* block file name / strip extension */ {
|
case 'b': /* block file name / strip extension */ {
|
||||||
if (edit_widget) {
|
if (edit_widget) {
|
||||||
char *file = g_strconcat (home_dir, BLOCK_FILE, NULL);
|
char *file = g_strconcat (home_dir, BLOCK_FILE, (char *) NULL);
|
||||||
fname = (*quote_func) (file, 0);
|
fname = (*quote_func) (file, 0);
|
||||||
g_free (file);
|
g_free (file);
|
||||||
return fname;
|
return fname;
|
||||||
|
|
10
src/util.c
10
src/util.c
|
@ -640,7 +640,7 @@ load_mc_home_file (const char *filename, char **allocated_filename)
|
||||||
hintfile_base = concat_dir_and_file (mc_home, filename);
|
hintfile_base = concat_dir_and_file (mc_home, filename);
|
||||||
lang = guess_message_value ();
|
lang = guess_message_value ();
|
||||||
|
|
||||||
hintfile = g_strconcat (hintfile_base, ".", lang, NULL);
|
hintfile = g_strconcat (hintfile_base, ".", lang, (char *) NULL);
|
||||||
data = load_file (hintfile);
|
data = load_file (hintfile);
|
||||||
|
|
||||||
if (!data) {
|
if (!data) {
|
||||||
|
@ -648,7 +648,7 @@ load_mc_home_file (const char *filename, char **allocated_filename)
|
||||||
/* Fall back to the two-letter language code */
|
/* Fall back to the two-letter language code */
|
||||||
if (lang[0] && lang[1])
|
if (lang[0] && lang[1])
|
||||||
lang[2] = 0;
|
lang[2] = 0;
|
||||||
hintfile = g_strconcat (hintfile_base, ".", lang, NULL);
|
hintfile = g_strconcat (hintfile_base, ".", lang, (char *) NULL);
|
||||||
data = load_file (hintfile);
|
data = load_file (hintfile);
|
||||||
|
|
||||||
if (!data) {
|
if (!data) {
|
||||||
|
@ -1182,9 +1182,9 @@ concat_dir_and_file (const char *dir, const char *file)
|
||||||
int i = strlen (dir);
|
int i = strlen (dir);
|
||||||
|
|
||||||
if (dir [i-1] == PATH_SEP)
|
if (dir [i-1] == PATH_SEP)
|
||||||
return g_strconcat (dir, file, NULL);
|
return g_strconcat (dir, file, (char *) NULL);
|
||||||
else
|
else
|
||||||
return g_strconcat (dir, PATH_SEP_STR, file, NULL);
|
return g_strconcat (dir, PATH_SEP_STR, file, (char *) NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1254,7 +1254,7 @@ mc_mkstemps (char **pname, const char *prefix, const char *suffix)
|
||||||
tmpbase = g_strdup (prefix);
|
tmpbase = g_strdup (prefix);
|
||||||
}
|
}
|
||||||
|
|
||||||
tmpname = g_strconcat (tmpbase, "XXXXXX", suffix, NULL);
|
tmpname = g_strconcat (tmpbase, "XXXXXX", suffix, (char *) NULL);
|
||||||
*pname = tmpname;
|
*pname = tmpname;
|
||||||
XXXXXX = &tmpname[strlen (tmpbase)];
|
XXXXXX = &tmpname[strlen (tmpbase)];
|
||||||
g_free (tmpbase);
|
g_free (tmpbase);
|
||||||
|
|
|
@ -211,7 +211,7 @@ void save_file_position (const char *filename, long line, long column);
|
||||||
|
|
||||||
/* this function allows you to write:
|
/* this function allows you to write:
|
||||||
* char *s = g_strdup("hello, world");
|
* char *s = g_strdup("hello, world");
|
||||||
* s = free_after(g_strconcat(s, s, NULL), s);
|
* s = free_after(g_strconcat(s, s, (char *) NULL), s);
|
||||||
*/
|
*/
|
||||||
static inline char *
|
static inline char *
|
||||||
free_after (char *result, char *string_to_free)
|
free_after (char *result, char *string_to_free)
|
||||||
|
|
|
@ -290,7 +290,7 @@ tilde_expand (const char *directory)
|
||||||
if (!passwd)
|
if (!passwd)
|
||||||
return g_strdup (directory);
|
return g_strdup (directory);
|
||||||
|
|
||||||
return g_strconcat (passwd->pw_dir, PATH_SEP_STR, q, NULL);
|
return g_strconcat (passwd->pw_dir, PATH_SEP_STR, q, (char *) NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -671,7 +671,7 @@ do_view_init (WView *view, const char *_command, const char *_file,
|
||||||
if (view->viewer_magic_flag && (type != COMPRESSION_NONE)) {
|
if (view->viewer_magic_flag && (type != COMPRESSION_NONE)) {
|
||||||
g_free (view->filename);
|
g_free (view->filename);
|
||||||
view->filename =
|
view->filename =
|
||||||
g_strconcat (_file, decompress_extension (type), NULL);
|
g_strconcat (_file, decompress_extension (type), (char *) NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
error = load_view_file (view, fd);
|
error = load_view_file (view, fd);
|
||||||
|
|
|
@ -2398,7 +2398,7 @@ groupbox_new (int x, int y, int width, int height, const char *title)
|
||||||
if (title) {
|
if (title) {
|
||||||
char *t;
|
char *t;
|
||||||
t = g_strstrip (g_strdup (title));
|
t = g_strstrip (g_strdup (title));
|
||||||
g->title = g_strconcat (" ", t, " ", NULL);
|
g->title = g_strconcat (" ", t, " ", (char *) NULL);
|
||||||
g_free (t);
|
g_free (t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -200,7 +200,7 @@ do_create_message (int flags, const char *title, const char *text)
|
||||||
Dlg_head *d;
|
Dlg_head *d;
|
||||||
|
|
||||||
/* Add empty lines before and after the message */
|
/* Add empty lines before and after the message */
|
||||||
p = g_strconcat ("\n", text, "\n", NULL);
|
p = g_strconcat ("\n", text, "\n", (char *) NULL);
|
||||||
query_dialog (title, p, flags, 0);
|
query_dialog (title, p, flags, 0);
|
||||||
d = last_query_dlg;
|
d = last_query_dlg;
|
||||||
init_dlg (d);
|
init_dlg (d);
|
||||||
|
@ -253,7 +253,7 @@ fg_message (int flags, const char *title, const char *text)
|
||||||
static void
|
static void
|
||||||
bg_message (int dummy, int *flags, char *title, const char *text)
|
bg_message (int dummy, int *flags, char *title, const char *text)
|
||||||
{
|
{
|
||||||
title = g_strconcat (_("Background process:"), " ", title, NULL);
|
title = g_strconcat (_("Background process:"), " ", title, (char *) NULL);
|
||||||
fg_message (*flags, title, text);
|
fg_message (*flags, title, text);
|
||||||
g_free (title);
|
g_free (title);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue