summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-25 20:46:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-25 20:46:18 +0000
commit8e4c33b69f0f9b3939e76c66aec65aa8c43a9b4a (patch)
tree0615dcb5b01fcc369ca6b1bc8a954b5a50eeccf2 /apps/ChangeLog.txt
parent8adf9f884d6add4e42e733e5a966855da0ff8f7c (diff)
downloadnuttx-8e4c33b69f0f9b3939e76c66aec65aa8c43a9b4a.tar.gz
nuttx-8e4c33b69f0f9b3939e76c66aec65aa8c43a9b4a.tar.bz2
nuttx-8e4c33b69f0f9b3939e76c66aec65aa8c43a9b4a.zip
readline() (and hence NSH) now accept the DEL character as well as the Backspace character for the backspace functionality
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4428 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/ChangeLog.txt')
-rwxr-xr-xapps/ChangeLog.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 5a1174596..89703967f 100755
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -192,3 +192,7 @@
* apps/examples/qencoder: Add a quadrature driver test.
* apps/examples/ostest/fpu.c: Add a test to verify that FPU registers
are properly saved and restored on context switches.
+ * apps/system/readline/readline.c: readline() will now treat either a
+ backspace or a DEL character as a backspace (i.e., deleting the character
+ to the left of the cursor). This makes NSH less dependent on particular
+ keyboard mappings of the Backspace key. Submitted by Mike Smith.