* editcmd.c: Use input_expand_dialog() instead of input_dialog()

for loading and saving files.
This commit is contained in:
Pavel Roskin 2003-11-27 10:23:50 +00:00
parent 2256237cd9
commit a7c0bbac62
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-11-27 Pavel Roskin <proski@gnu.org>
* editcmd.c: Use input_expand_dialog() instead of input_dialog()
for loading and saving files.
2003-11-24 Andrew V. Samoilov <sav@bcs.zp.ua> 2003-11-24 Andrew V. Samoilov <sav@bcs.zp.ua>
* editcmd.c (pipe_mail): Eliminate g_strdup_printf(). * editcmd.c (pipe_mail): Eliminate g_strdup_printf().

View File

@ -42,8 +42,8 @@
#include "../src/wtools.h" /* message() */ #include "../src/wtools.h" /* message() */
#include "../src/charsets.h" #include "../src/charsets.h"
#define edit_get_load_file(f,h) input_dialog (h, _(" Enter file name: "), f) #define edit_get_load_file(f,h) input_expand_dialog (h, _(" Enter file name: "), f)
#define edit_get_save_file(f,h) input_dialog (h, _(" Enter file name: "), f) #define edit_get_save_file(f,h) input_expand_dialog (h, _(" Enter file name: "), f)
struct selection { struct selection {
unsigned char * text; unsigned char * text;