summaryrefslogtreecommitdiff
path: root/sys/src/cmd/aux/kbdfs
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@centraldogma>2011-05-28 08:33:41 +0000
committercinap_lenrek <cinap_lenrek@centraldogma>2011-05-28 08:33:41 +0000
commit64f14cc6a4a5d0200f56d88c843bb439dcc473d9 (patch)
tree02ffd65b681149dc0af897e980be6a2821b99d69 /sys/src/cmd/aux/kbdfs
parent4e9e86077647d59d864e82e7e647a64b77f1fbbf (diff)
kbdfs: mklatin comments
Diffstat (limited to 'sys/src/cmd/aux/kbdfs')
-rw-r--r--sys/src/cmd/aux/kbdfs/mklatin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/src/cmd/aux/kbdfs/mklatin.c b/sys/src/cmd/aux/kbdfs/mklatin.c
index 64787f00f..767351e58 100644
--- a/sys/src/cmd/aux/kbdfs/mklatin.c
+++ b/sys/src/cmd/aux/kbdfs/mklatin.c
@@ -1,6 +1,6 @@
/*
- * Parse /lib/keyboard to create latin1.h table for kernel.
- * mklatinkbd -r prints an array of integers rather than a Rune string literal.
+ * Parse /lib/keyboard to create latin1.h table for kbdfs.
+ * mklatin -r prints an array of integers rather than a Rune string literal.
*/
#include <u.h>
@@ -21,8 +21,8 @@ char *head = ""
" */\n";
/*
- * latin1.c assumes that strlen(ld) is at most 2.
- * It also assumes that latintab[i].ld can be a prefix of latintab[j].ld
+ * kbdfs assumes that strlen(ld) is at most 2.
+ * It also assumes that tab[i].ld can be a prefix of tab[j].ld
* only when j < i. We ensure this by sorting the output by prefix length.
* The so array is indexed by the character value.
*/