mirror of
https://github.com/davatorium/rofi.git
synced 2025-02-03 15:34:54 -05:00
Merge remote-tracking branch 'github/master'
This commit is contained in:
commit
9210ce9aad
5 changed files with 14 additions and 1 deletions
|
@ -37,7 +37,7 @@ typedef struct _ParseObject {
|
|||
char *filename;
|
||||
|
||||
/** Length of string */
|
||||
ssize_t str_len;
|
||||
yy_size_t str_len;
|
||||
/** String */
|
||||
const char *input_str;
|
||||
/** Position in file */
|
||||
|
|
|
@ -23,6 +23,9 @@ unsigned int test =0;
|
|||
} \
|
||||
}
|
||||
|
||||
void config_parser_set_option ( const char *k, const char *v)
|
||||
{
|
||||
}
|
||||
char * rofi_expand_path ( const char *path )
|
||||
{
|
||||
|
||||
|
|
|
@ -22,6 +22,9 @@ unsigned int test =0;
|
|||
abort ( ); \
|
||||
} \
|
||||
}
|
||||
void config_parser_set_option ( const char *k, const char *v)
|
||||
{
|
||||
}
|
||||
void rofi_add_error_message ( GString *msg )
|
||||
{}
|
||||
|
||||
|
|
|
@ -22,6 +22,10 @@ unsigned int normal_window_mode = 0;
|
|||
|
||||
#include "view.h"
|
||||
|
||||
void config_parser_set_option ( const char *k, const char *v)
|
||||
{
|
||||
}
|
||||
|
||||
void rofi_add_error_message ( GString *msg)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -12,6 +12,9 @@ unsigned int test =0;
|
|||
assert ( a ); \
|
||||
printf ( "Test %3i passed (%s)\n", ++test, # a ); \
|
||||
}
|
||||
void config_parser_set_option ( const char *k, const char *v)
|
||||
{
|
||||
}
|
||||
void rofi_add_error_message ( GString *msg )
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue