summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-17 15:56:32 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-17 15:56:32 -0600
commite33bd6bd784ba0334beb0481d82416be38fbb54d (patch)
treeb87ce3e8c39930580c812fdee5cdfed7d700fd8a /apps/ChangeLog.txt
parent3895a010a5c8d971ec04802ae569f44a06bd572b (diff)
downloadnuttx-e33bd6bd784ba0334beb0481d82416be38fbb54d.tar.gz
nuttx-e33bd6bd784ba0334beb0481d82416be38fbb54d.tar.bz2
nuttx-e33bd6bd784ba0334beb0481d82416be38fbb54d.zip
NSH: Add support for while-do-done and until-do-done loops
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index e34781464..dfb45293e 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -788,3 +788,7 @@
* apps/nshlib/nsh_script.c: Now saves the FILE stream for the script
file in the vtbl structure so that it can be accessed by forthcoming
while and until logic (2014-1-17).
+ * apps/nshlib/nsh.h, nsh_command.c, nsh_parse.c, and nsh_script.c: Add
+ support for while-do-done and until-do-done loops. These only work
+ when executing a script file because they depend on the ability to seek
+ in the file to implement the looping behaviors (2014-1-17).