Module Name: src
Committed By: christos
Date: Thu Jan 7 22:47:49 UTC 2016
Modified Files:
src/external/bsd/mdocml/dist: eqn.c
Log Message:
fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/mdocml/dist/eqn.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/mdocml/dist/eqn.c
diff -u src/external/bsd/mdocml/dist/eqn.c:1.3 src/external/bsd/mdocml/dist/eqn.c:1.4
--- src/external/bsd/mdocml/dist/eqn.c:1.3 Thu Jan 7 15:06:44 2016
+++ src/external/bsd/mdocml/dist/eqn.c Thu Jan 7 17:47:49 2016
@@ -1,4 +1,4 @@
-/* $Id: eqn.c,v 1.3 2016/01/07 20:06:44 christos Exp $ */
+/* $Id: eqn.c,v 1.4 2016/01/07 22:47:49 christos Exp $ */
/*
* Copyright (c) 2011, 2014 Kristaps Dzonsons <[email protected]>
* Copyright (c) 2014, 2015 Ingo Schwarze <[email protected]>
@@ -992,7 +992,7 @@ this_tok:
parent->type == EQN_MATRIX))
parent = parent->parent;
/* Close out any "singleton" lists. */
- while (parrent && parent->type == EQN_LISTONE &&
+ while (parent && parent->type == EQN_LISTONE &&
parent->args == parent->expectargs)
parent = parent->parent;
break;