From 91f3165b2da17010fdb8d5d85e676fee442afcc4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 23 Jun 2008 16:58:49 +0000 Subject: IRIX fixes thanks to Elias Pipping. --- status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'status.c') diff --git a/status.c b/status.c index 0aaea394..1c82c9eb 100644 --- a/status.c +++ b/status.c @@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.38 2008-06-23 07:41:21 nicm Exp $ */ +/* $Id: status.c,v 1.39 2008-06-23 16:58:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -444,7 +444,7 @@ status_prompt_key(struct client *c, int key) break; } /* FALLTHROUGH */ - case '\e': /* escape */ + case '\033': /* escape */ c->prompt_callback(c->prompt_data, NULL); server_clear_client_prompt(c); break; -- cgit