From 614b5abfa61dba543406dc06901e1c9b171fb30d Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Tue, 11 Aug 2015 09:38:19 +0200 Subject: [PATCH] Make -inscriptions a volatile option Saving unicodein the settings file does not work, and leads to an octal escape sequence for non-ascii characters, which is not correctly read back. For now saving thus is avoided. --- args.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/args.h b/args.h index bd5b4e7..3271a5d 100644 --- a/args.h +++ b/args.h @@ -610,7 +610,7 @@ ArgDescriptor argDescriptors[] = { { "ub", ArgBoolean, (void *) &appData.useBorder, FALSE, INVALID }, { "border", ArgFilename, (void *) &appData.border, TRUE, (ArgIniType) "" }, { "finger", ArgFilename, (void *) &appData.finger, FALSE, (ArgIniType) "" }, - { "inscriptions", ArgString, (void *) &appData.inscriptions, XBOARD, (ArgIniType) "" }, + { "inscriptions", ArgString, (void *) &appData.inscriptions, FALSE, (ArgIniType) "" }, { "autoInstall", ArgString, (void *) &appData.autoInstall, XBOARD, (ArgIniType) "" }, { "fixedSize", ArgBoolean, (void *) &appData.fixedSize, TRUE, (ArgIniType) FALSE }, -- 1.7.0.4