1
0
Fork 0
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:
Dave Davenport 2017-03-28 17:06:40 +02:00
commit 9210ce9aad
5 changed files with 14 additions and 1 deletions

View file

@ -37,7 +37,7 @@ typedef struct _ParseObject {
char *filename; char *filename;
/** Length of string */ /** Length of string */
ssize_t str_len; yy_size_t str_len;
/** String */ /** String */
const char *input_str; const char *input_str;
/** Position in file */ /** Position in file */

View 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 ) char * rofi_expand_path ( const char *path )
{ {

View file

@ -22,6 +22,9 @@ unsigned int test =0;
abort ( ); \ abort ( ); \
} \ } \
} }
void config_parser_set_option ( const char *k, const char *v)
{
}
void rofi_add_error_message ( GString *msg ) void rofi_add_error_message ( GString *msg )
{} {}

View file

@ -22,6 +22,10 @@ unsigned int normal_window_mode = 0;
#include "view.h" #include "view.h"
void config_parser_set_option ( const char *k, const char *v)
{
}
void rofi_add_error_message ( GString *msg) void rofi_add_error_message ( GString *msg)
{ {
} }

View file

@ -12,6 +12,9 @@ unsigned int test =0;
assert ( a ); \ assert ( a ); \
printf ( "Test %3i passed (%s)\n", ++test, # 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 ) void rofi_add_error_message ( GString *msg )
{ {
} }