summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-08-10 05:13:42 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-08-10 05:13:42 +0000
commitcc684979eacd667696dbe4cd2e057103c43f2359 (patch)
tree79c69571154944170997a7b4ab79be80c91699a6
parentb77990be3e74a43a4e7ccdd6341249482807acd2 (diff)
Notes
-rw-r--r--bin/csh/lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/csh/lex.c b/bin/csh/lex.c
index 6051d9ac64b12..940ccaedadabc 100644
--- a/bin/csh/lex.c
+++ b/bin/csh/lex.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: lex.c,v 1.2 1994/09/24 02:54:09 davidg Exp $
+ * $Id: lex.c,v 1.3 1995/05/30 00:06:35 rgrimes Exp $
*/
#ifndef lint
@@ -1187,7 +1187,7 @@ gethent(sc)
}
np = lhsb;
event = 0;
- while (!cmap(c, _ESC | _META | _QF | _QB) && !any("${}:", c)) {
+ while (!cmap(c, _ESC | _META | _QF | _QB) && !any("^$*-%{}:", c)) {
if (event != -1 && Isdigit(c))
event = event * 10 + c - '0';
else