1
1

* edit-widget.h: Use PATH_SEP_STR.

Этот коммит содержится в:
Andrew V. Samoilov 2002-01-15 01:43:50 +00:00
родитель e41f4c01e4
Коммит 1e5b1bfde1
2 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -16,6 +16,8 @@
* edit.h (struct context_rule): Comment out single_char field.
It is written once but never read.
* edit-widget.h: Use PATH_SEP_STR.
2001-12-22 Andrew V. Samoilov <kai@cmail.ru>
* editcmd.c (edit_goto_cmd): Use g_free to release f.

Просмотреть файл

@ -121,12 +121,12 @@ struct editor_widget {
typedef struct editor_widget WEdit;
#define EDIT_DIR "/.mc/cedit"
#define SYNTAX_FILE EDIT_DIR "/Syntax"
#define CLIP_FILE EDIT_DIR "/cooledit.clip"
#define MACRO_FILE EDIT_DIR "/cooledit.macros"
#define BLOCK_FILE EDIT_DIR "/cooledit.block"
#define ERROR_FILE EDIT_DIR "/cooledit.error"
#define TEMP_FILE EDIT_DIR "/cooledit.temp"
#define EDIT_DIR PATH_SEP_STR ".mc" PATH_SEP_STR "cedit"
#define SYNTAX_FILE EDIT_DIR PATH_SEP_STR "Syntax"
#define CLIP_FILE EDIT_DIR PATH_SEP_STR "cooledit.clip"
#define MACRO_FILE EDIT_DIR PATH_SEP_STR "cooledit.macros"
#define BLOCK_FILE EDIT_DIR PATH_SEP_STR "cooledit.block"
#define ERROR_FILE EDIT_DIR PATH_SEP_STR "cooledit.error"
#define TEMP_FILE EDIT_DIR PATH_SEP_STR "cooledit.temp"
#endif /* !__EDIT_WIDGET_H */