Module Name:    src
Committed By:   rillig
Date:           Thu Apr 29 20:17:20 UTC 2021

Modified Files:
        src/games/cgram: cgram.6 cgram.c

Log Message:
cgram: in hinting mode, show all correct characters in bold face

For almost solved cryptograms, this makes the punctuation stand out
less, helping to focus on the missing letters.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/games/cgram/cgram.6
cvs rdiff -u -r1.21 -r1.22 src/games/cgram/cgram.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/cgram/cgram.6
diff -u src/games/cgram/cgram.6:1.3 src/games/cgram/cgram.6:1.4
--- src/games/cgram/cgram.6:1.3	Thu Apr 22 14:57:36 2021
+++ src/games/cgram/cgram.6	Thu Apr 29 20:17:20 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: cgram.6,v 1.3 2021/04/22 14:57:36 wiz Exp $
+.\" $NetBSD: cgram.6,v 1.4 2021/04/29 20:17:20 rillig Exp $
 .\"
 .\" Copyright (c) 2004, 2013 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd April 22, 2021
+.Dd April 29, 2021
 .Dt CGRAM 6
 .Os
 .Sh NAME
@@ -55,7 +55,7 @@ Enter a tilde
 to quit.
 Press asterisk
 .Pq *
-to enter an easier mode where correct letters are displayed in
+to enter an easier mode where correct characters are displayed in
 boldface.
 .Sh SEE ALSO
 .Xr caesar 6

Index: src/games/cgram/cgram.c
diff -u src/games/cgram/cgram.c:1.21 src/games/cgram/cgram.c:1.22
--- src/games/cgram/cgram.c:1.21	Sun Apr 25 20:38:03 2021
+++ src/games/cgram/cgram.c	Thu Apr 29 20:17:20 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: cgram.c,v 1.21 2021/04/25 20:38:03 rillig Exp $ */
+/* $NetBSD: cgram.c,v 1.22 2021/04/29 20:17:20 rillig Exp $ */
 
 /*-
  * Copyright (c) 2013, 2021 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: cgram.c,v 1.21 2021/04/25 20:38:03 rillig Exp $");
+__RCSID("$NetBSD: cgram.c,v 1.22 2021/04/29 20:17:20 rillig Exp $");
 #endif
 
 #include <assert.h>
@@ -348,8 +348,7 @@ redraw(void)
 		for (int x = 0; x < max_x; x++) {
 			char ch = line[offset_x + x];
 			bool bold = hinting &&
-			    ch == solline[offset_x + x] &&
-			    ch_isalpha(ch);
+			    (ch == solline[offset_x + x] || !ch_isalpha(ch));
 
 			if (bold)
 				attron(A_BOLD);

Reply via email to