summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Mallet <anthony.mallet@laas.fr>2020-09-29 17:26:28 +0200
committerAnthony Mallet <anthony.mallet@laas.fr>2020-09-29 17:33:21 +0200
commitb1653defa7fb98624fa346c7f9d616be4a5640d6 (patch)
tree0c540ecdb3e50d19844a3ad278c01b2c3dcc5950
parent820b8dbcb4553630499b687901ef1d9de0114ce1 (diff)
downloadeltclsh-b1653defa7fb98624fa346c7f9d616be4a5640d6.tar.gz
Release 1.18eltclsh-1.18
-rw-r--r--CHANGELOG16
-rw-r--r--configure.ac2
-rw-r--r--src/init.c4
3 files changed, 19 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 0081e9f..8d711de 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,19 @@
+eltclsh 1.18 released September 29, 2020
+
+ 53. Redisplay completion when a common prefix is appended, before prompting
+ for displaying all possibilities
+ 52. Add some recent (8.6) TCL commands to the completion engine
+ 51. Do not complete on variable and commands in children namespaces
+
+eltclsh 1.17 released August 8, 2018
+
+ 50. Drop local implementation of lreverse and lmap (John Thomas)
+
+eltclsh 1.16 released January 16, 2016
+
+ 49. editline switched to a wchar_t EL_GETCFN (Andreas Dixius)
+ 48. Fix a NUL char wrongly coded as '0' (Andreas Dixius)
+
eltclsh 1.15 released march 2, 2015
47. Fix potential segfault when printing interactive prompt.
diff --git a/configure.ac b/configure.ac
index 0877d31..4f6a9e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl
dnl configure.in --
dnl process this file with autoconf to produce a configure script.
dnl
-AC_INIT([eltclsh],[1.17],[openrobots@laas.fr])
+AC_INIT([eltclsh],[1.18],[openrobots@laas.fr])
AC_PREREQ(2.59)
AC_CONFIG_MACRO_DIR([m4])
diff --git a/src/init.c b/src/init.c
index a4a8136..e64a37a 100644
--- a/src/init.c
+++ b/src/init.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2001,2010-2013,2015,2017-2018 LAAS/CNRS
+ * Copyright (c) 2001,2010-2013,2015,2017-2018,2020 LAAS/CNRS
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -30,7 +30,7 @@
*/
#include "elconfig.h"
-static char copyright[] = " - Copyright (C) 2001-2018 LAAS-CNRS";
+static char copyright[] = " - Copyright (C) 2001-2020 LAAS-CNRS";
static char *version = ELTCLSH_VERSION;
#include <stdio.h>