diff src/rcfile.c @ 356:673d1eb5af73

Rename show_dot_files to show_hidden_files. There is no need to expose the underlying method to hide files.
author zas_
date Sun, 13 Apr 2008 19:21:13 +0000
parents 691fcf15aca1
children 8ce8d565c038
line wrap: on
line diff
--- a/src/rcfile.c	Sun Apr 13 18:56:24 2008 +0000
+++ b/src/rcfile.c	Sun Apr 13 19:21:13 2008 +0000
@@ -423,7 +423,7 @@
 
 	secure_fprintf(ssi, "\n##### Filtering Options #####\n\n");
 
-	write_bool_option(ssi, "file_filter.show_dot_files", options->file_filter.show_dot_files);
+	write_bool_option(ssi, "file_filter.show_hidden_files", options->file_filter.show_hidden_files);
 	write_bool_option(ssi, "file_filter.disable", options->file_filter.disable);
 	secure_fputc(ssi, '\n');
 
@@ -690,7 +690,7 @@
 
 		/* filtering options */
 
-		READ_BOOL(file_filter.show_dot_files);
+		READ_BOOL(file_filter.show_hidden_files);
 		READ_BOOL(file_filter.disable);
 
 		if (strcasecmp(option, "file_filter.ext") == 0)