summaryrefslogtreecommitdiff
path: root/usr.bin/make/symtable.h
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2019-12-21 15:31:55 +0000
committerMarc Espie <espie@cvs.openbsd.org>2019-12-21 15:31:55 +0000
commit9e730f8539578463572da81531193be6de6a6720 (patch)
tree4a6f4df156e1a37073a660b3bc01f50563618902 /usr.bin/make/symtable.h
parent3df663636a1a12699eb08fd4445a9e818fa85e4f (diff)
yet another mostly cosmetic diff
- rename context into localvars, which is more meaningful and less generic - instantiate the random rumbling at the start of gnode.h with actual variable names - explain and group gnode.h variables better - make some comments terser/more meaningful okay millert@
Diffstat (limited to 'usr.bin/make/symtable.h')
-rw-r--r--usr.bin/make/symtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/symtable.h b/usr.bin/make/symtable.h
index d2e8105a6f4..cd34b450dbb 100644
--- a/usr.bin/make/symtable.h
+++ b/usr.bin/make/symtable.h
@@ -1,6 +1,6 @@
#ifndef SYMTABLE_H
#define SYMTABLE_H
-/* $OpenBSD: symtable.h,v 1.4 2010/07/19 19:46:44 espie Exp $ */
+/* $OpenBSD: symtable.h,v 1.5 2019/12/21 15:31:54 espie Exp $ */
/*
* Copyright (c) 2001 Marc Espie.
@@ -30,7 +30,7 @@
#define LOCAL_SIZE 7
/* SymTable is private to var.c, but is declared here to allow for
- local declaration of context tables
+ local declaration of symbol tables
*/
struct SymTable_ {
char *locals[LOCAL_SIZE];