Update menuconfig items with approximate applet sizes
[oweals/busybox.git] / miscutils / less.c
index 0b0a9aed4be26e7290d9813cf946e5b25e2d44ca..a4ef1518f279771cb8c76054314e32b31657e562 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 //config:config LESS
-//config:      bool "less"
+//config:      bool "less (15 kb)"
 //config:      default y
 //config:      help
 //config:        'less' is a pager, meaning that it displays text files. It possesses
@@ -267,7 +267,7 @@ struct globals {
 /* flines[] are lines read from stdin, each in malloc'ed buffer.
  * Line numbers are stored as uint32_t prepended to each line.
  * Pointer is adjusted so that flines[i] points directly past
- * line number. Accesor: */
+ * line number. Accessor: */
 #define MEMPTR(p) ((char*)(p) - 4)
 #define LINENO(p) (*(uint32_t*)((p) - 4))