summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-01 19:07:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-01 19:07:57 +0000
commit6d35541209058b86bda7b34e47fa28c8c959d365 (patch)
tree058c4031d3edf80d524112e76c6da2bdc0be8e5c /nuttx/ChangeLog
parent4b8f5a9e6dc87bad723af14933cb8c17284eade6 (diff)
downloadnuttx-6d35541209058b86bda7b34e47fa28c8c959d365.tar.gz
nuttx-6d35541209058b86bda7b34e47fa28c8c959d365.tar.bz2
nuttx-6d35541209058b86bda7b34e47fa28c8c959d365.zip
Move lib/stdio/lib_fgets.c to apps/system/readline; simplify fgets(); use readline instead of fgets in NSH
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4356 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index dbe87bb88..bd73f2899 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2425,3 +2425,9 @@
* lib/dirent: Moved readdir_r() and telldir() from lib/misc to this new
directory where they belong.
* lib/termios. Implemented tcsetattr() and tcgetattr().
+ * lib/stdio/lib_fgets.c: The old fgets includes some terminal related
+ functionality: It handles VT-100 commands, includes a command line editor
+ and echo characters back to the terminal. This old, overloaded fgets()
+ was renamed readline() and moved to apps/system/readline. The version
+ of fgets() in lib/stdio was them simplified and stripped down so that it
+ *only* gets a string -- as its description implies.