changeset 2512:d9de7027d853

Fix int<->uint problem
author Klaus Ethgen <Klaus@Ethgen.de>
date Sun, 25 Jun 2017 21:57:35 +0100
parents 9897069380d9
children c67292329f12
files src/rcfile.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/rcfile.c	Sun Jun 25 13:23:51 2017 +0100
+++ b/src/rcfile.c	Sun Jun 25 21:57:35 2017 +0100
@@ -631,7 +631,7 @@
 		if (READ_BOOL(*options, use_saved_window_positions_for_new_windows)) continue;
 		if (READ_BOOL(*options, tools_restore_state)) continue;
 
-		if (READ_UINT(*options, log_window_lines)) continue;
+		if (READ_INT(*options, log_window_lines)) continue;
 
 		/* Properties dialog options */
 		if (READ_CHAR(*options, properties.tabs_order)) continue;