diff --git a/changelog b/changelog
index 4ce7247..40947e4 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,5 @@
+20140729 tpd src/axiom-website/patches.html 20140729.02.tpd.patch
+20140729 tpd src/lib/fnct-key.c 'length' is set but never used, removed
 20140729 tpd src/axiom-website/patches.html 20140729.01.tpd.patch
 20140729 tpd books/axiom.sty don't use mathbb because texlive has changed
 20140727 tpd src/axiom-website/patches.html 20140727.02.tpd.patch
diff --git a/patch b/patch
index 20e02cb..ef5a032 100644
--- a/patch
+++ b/patch
@@ -1,3 +1 @@
-books/axiom.sty don't use mathbb because texlive has changed
-
-The mathbb font requires a HUGE font package from texlive. Use \bf instead.
+src/lib/fnct-key.c 'length' is set but never used, removed
diff --git a/src/axiom-website/patches.html b/src/axiom-website/patches.html
index 1570ac6..9781067 100644
--- a/src/axiom-website/patches.html
+++ b/src/axiom-website/patches.html
@@ -4578,6 +4578,8 @@ August 2014 release<br/>
 In process, not yet released<br/><br/>
 <a href="patches/20140729.01.tpd.patch">20140729.01.tpd.patch</a>
 books/axiom.sty don't use mathbb because texlive has changed<br/>
+<a href="patches/20140729.02.tpd.patch">20140729.02.tpd.patch</a>
+src/lib/fnct-key.c 'length' is set but never used, removed<br/>
  </body>
 </html>
 
diff --git a/src/lib/fnct-key.c.pamphlet b/src/lib/fnct-key.c.pamphlet
index 2618130..8508dfd 100644
--- a/src/lib/fnct-key.c.pamphlet
+++ b/src/lib/fnct-key.c.pamphlet
@@ -137,7 +137,6 @@ define_function_keys(void)
     int key;
     int fd;
     char type;
-    int length;
 
     /** lets initialize the key pointers **/
     for (key = 0; key < 13; key++)
@@ -151,7 +150,7 @@ define_function_keys(void)
     else {
         /*** If so, then get the key bindings **/
         while ((key = get_key(fd, &type))) {
-            length = get_str(fd, string);
+            get_str(fd, string);
             switch (type) {
               case 'D':
                 if (key == 12) {
