Allow hyphen in name of help item
authorH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 10 Mar 2016 15:28:52 +0000 (16:28 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Thu, 10 Mar 2016 15:28:52 +0000 (16:28 +0100)
Some dialog items have names with hyphens in them, such as 'Auto-save',
and these would all be confusedif the true name was taken to end before
the hyphen.

dialogs.c

index ca9f71c..104f6c2 100644 (file)
--- a/dialogs.c
+++ b/dialogs.c
@@ -2462,7 +2462,7 @@ GetHelpText (FILE *f, char *name)
     int len, cnt = 0;
     snprintf(buf, MSG_SIZ, ".B %s", name);
     len = strlen(buf);
-    for(len=1; buf[len] == ' ' || isalpha(buf[len]) || isdigit(buf[len]); len++);
+    for(len=1; buf[len] == ' ' || buf[len] == '-' || isalpha(buf[len]) || isdigit(buf[len]); len++);
     buf[len] = NULLCHAR;
     while(buf[--len] == ' ') buf[len] = NULLCHAR;
     while((line = ReadLine(f))) {