Make diagnostic_message forward directly to editor_status

This commit is contained in:
Kp 2013-01-01 05:22:42 +00:00
parent 4d083bce98
commit 7f5266e4a2
2 changed files with 1 additions and 15 deletions

View file

@ -208,20 +208,6 @@ void clear_editor_status(void)
}
void diagnostic_message( const char *format, ... )
{
char diag_line[DIAGNOSTIC_MESSAGE_MAX];
va_list ap;
va_start(ap, format);
vsprintf(diag_line, format, ap);
va_end(ap);
editor_status(diag_line);
}
static char sub_status_line[DIAGNOSTIC_MESSAGE_MAX];
void editor_sub_status( const char *format, ... )

View file

@ -496,7 +496,7 @@ extern int med_create_duplicate_segment(struct segment *sp);
extern int get_free_segment_number(void);
// Diagnostic message.
extern void diagnostic_message(const char *format, ... );
#define diagnostic_message editor_status
// Status Icon.
extern void print_status_icon( char icon[1], int position );