summaryrefslogtreecommitdiffstats
path: root/Modules/readline.c
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-12 22:57:04 (GMT)
committerNed Deily <nad@acm.org>2013-10-12 22:57:04 (GMT)
commit9809ca9d9ea96fdda69fca3ead2d0b765c55bc1a (patch)
tree4212d5429958c8ae21f19fdb13453c14b20fb3c4 /Modules/readline.c
parente92ef13b0add24cff6b3eba2f0b52a7833195a8c (diff)
parent5d4121a6311065723426b977a8f080518cdf8738 (diff)
downloadcpython-9809ca9d9ea96fdda69fca3ead2d0b765c55bc1a.zip
cpython-9809ca9d9ea96fdda69fca3ead2d0b765c55bc1a.tar.gz
cpython-9809ca9d9ea96fdda69fca3ead2d0b765c55bc1a.tar.bz2
Issue #18458: merge comments from 3.3
Diffstat (limited to 'Modules/readline.c')
-rw-r--r--Modules/readline.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/readline.c b/Modules/readline.c
index 668ee02..d14a09f 100644
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -55,11 +55,11 @@ extern char **completion_matches(char *, CPFunction *);
* with the "real" readline and cannot be detected at compile-time,
* hence we use a runtime check to detect if we're using libedit
*
- * Currently there is one know API incompatibility:
+ * Currently there is one known API incompatibility:
* - 'get_history' has a 1-based index with GNU readline, and a 0-based
- * index with libedit's emulation.
+ * index with older versions of libedit's emulation.
* - Note that replace_history and remove_history use a 0-based index
- * with both implementation.
+ * with both implementations.
*/
static int using_libedit_emulation = 0;
static const char libedit_version_tag[] = "EditLine wrapper";