svn commit: trunk/busybox/scripts

aldot at busybox.net aldot at busybox.net
Sun Feb 12 11:25:33 UTC 2006


Author: aldot
Date: 2006-02-12 03:25:32 -0800 (Sun, 12 Feb 2006)
New Revision: 13920

Log:
- commentary typos


Modified:
   trunk/busybox/scripts/bb_mkdep.c


Changeset:
Modified: trunk/busybox/scripts/bb_mkdep.c
===================================================================
--- trunk/busybox/scripts/bb_mkdep.c	2006-02-12 09:47:49 UTC (rev 13919)
+++ trunk/busybox/scripts/bb_mkdep.c	2006-02-12 11:25:32 UTC (rev 13920)
@@ -103,9 +103,9 @@
 static llist_t *Iop;        /* list of -I include usaged */
 
 static char *pwd;           /* current work directory */
-static size_t replace;      /* replace current work derectory to build dir */
+static size_t replace;      /* replace current work directory with build dir */
 
-static const char *kp;      /* KEY path, argument of -k usaged */
+static const char *kp;      /* KEY path, argument of -k used */
 static size_t kp_len;
 static struct stat st_kp;   /* stat(kp) */
 
@@ -197,7 +197,7 @@
   int state;
   int line;
   char *id = id_s;
-  size_t id_len = 0;                /* stupid initialize */
+  size_t id_len = 0;                /* stupid initialization */
   unsigned char *optr, *oend;
 
   int fd;
@@ -328,7 +328,7 @@
 		    put_id(c);
 		    getc1();
 		}
-		/* have str begined with c, readed == strlen key and compared */
+		/* str begins with c, read == strlen key and compared */
 		if(diu == id_len && !memcmp(id, preproc[diu], diu)) {
 		    state = diu + '0';
 		    id_len = 0; /* common for save */
@@ -427,7 +427,7 @@
 }
 
 
-/* bb_simplify_path special variant for apsolute pathname */
+/* bb_simplify_path special variant for absolute pathname */
 static size_t bb_qa_simplify_path(char *path)
 {
 	char *s, *p;
@@ -477,7 +477,7 @@
 	const char *p;
 
 	lo = Iop;
-	p = strrchr(fname, '/');    /* fname have absolute pathname */
+	p = strrchr(fname, '/');    /* fname has absolute pathname */
 	w = (p-fname);
 	/* find from current directory of source file */
 	ap = bb_asprint("%.*s/%s", w, fname, include);
@@ -502,15 +502,14 @@
 
 	/* find from "-I include" specified directories */
 	free(ap);
-	/* lo->data have absolute pathname */
+	/* lo->data has absolute pathname */
 	ap = bb_asprint("%s/%s", lo->data, include);
 	lo = lo->link;
     }
 
     cur = xmalloc(sizeof(bb_key_t));
-    cur->keyname = ap;
+    cur->keyname = cur->stored_path = ap;
     cur->key_sz = key_sz;
-    cur->stored_path = ap;
     cur->value = cur->checked = p_i;
     if(p_i == NULL && noiwarning)
 	fprintf(stderr, "%s: Warning: #include \"%s\" not found\n", fname, include);
@@ -529,7 +528,7 @@
 
 	cur = check_key(key_top, opt, key_sz);
 	if(cur != NULL) {
-	    /* present already */
+	    /* already present */
 	    cur->checked = NULL;        /* store only */
 	    if(cur->value == NULL && val == NULL)
 		return;
@@ -569,7 +568,7 @@
 	first_chars[(int)*k] = *k;
 
 	cur->stored_path = k = bb_asprint("%s/%s.h", kp, k);
-	/* key converting [A-Z_] -> [a-z/] */
+	/* key conversion [A-Z_] -> [a-z/] */
 	for(p = k + kp_len + 1; *p; p++) {
 	    if(*p >= 'A' && *p <= 'Z')
 		    *p = *p - 'A' + 'a';
@@ -605,7 +604,7 @@
 	    }
 	    /* size_t -> ssize_t :( */
 	    rw_ret = (ssize_t)recordsz;
-	    /* check kp/key.h, compare after previous usage */
+	    /* check kp/key.h, compare after previous use */
 	    cmp_ok = 0;
 	    k = cur->stored_path;
 	    if(stat(k, &st)) {
@@ -741,7 +740,7 @@
     return NULL;
 }
 
-/* from libbb but inline for fast */
+/* from libbb but inlined for speed considerations */
 static inline llist_t *llist_add_to(llist_t *old_head, char *new_item)
 {
 	llist_t *new_head;
@@ -764,7 +763,7 @@
 
     dirs = llist_add_to(NULL, bb_simplify_path(p));
     replace = strlen(dirs->data);
-    /* emulate recursive */
+    /* emulate recursion */
     while(dirs) {
 	d_add = NULL;
 	while(dirs) {
@@ -804,7 +803,7 @@
 	llist_t *fl;
 
 	{
-	    /* for bb_simplify_path, this program have not chdir() */
+	    /* for bb_simplify_path, this program has no chdir() */
 	    /* libbb-like my xgetcwd() */
 	    unsigned path_max = 512;
 
@@ -864,7 +863,7 @@
 	for(i = 0; i < UCHAR_MAX; i++) {
 	    if(ISALNUM(i))
 		isalnums[i] = i;
-	    /* set unparsed chars for speed up of parser */
+	    /* set unparsed chars to speed up the parser */
 	    else if(i != CHR && i != STR && i != POUND && i != REM)
 		first_chars[i] = ANY;
 	}
@@ -924,7 +923,6 @@
 }
 
 /* partial libbb routine as is */
-
 static char *bb_simplify_path(const char *path)
 {
 	char *s, *start, *p;
@@ -932,7 +930,7 @@
 	if (path[0] == '/')
 		start = bb_xstrdup(path);
 	else {
-		/* is not libbb, but this program have not chdir() */
+		/* is not libbb, but this program has no chdir() */
 		start = bb_asprint("%s/%s", pwd, path);
 	}
 	p = s = start;




More information about the busybox-cvs mailing list