Commit ab84151b authored by Antoine Cellerier's avatar Antoine Cellerier

Add comment about the fact that lines begining with a # are comments in the

vlcrc file. This might seem obvious, but many people on the forums don't
seem to understand that.
parent 67844cf2
...@@ -1168,7 +1168,8 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name, ...@@ -1168,7 +1168,8 @@ static int SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name,
return -1; return -1;
} }
fprintf( file, "###\n### " COPYRIGHT_MESSAGE "\n###\n\n" ); fprintf( file, "###\n### " COPYRIGHT_MESSAGE "\n###\n\n"
"###\n### lines begining with a '#' character are comments\n###\n\n" );
/* Look for the selected module, if NULL then save everything */ /* Look for the selected module, if NULL then save everything */
for( i_index = 0; i_index < p_list->i_count; i_index++ ) for( i_index = 0; i_index < p_list->i_count; i_index++ )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment