From 77411610ea098548f07fe0bab90a1f342a239d90 Mon Sep 17 00:00:00 2001 From: "jani@rhols221.adsl.netsonic.fi" <> Date: Mon, 5 Apr 2004 16:28:16 +0300 Subject: [PATCH] Fixed a non-critical bug, but which affected how indent program indents the code. --- client/mysql.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/mysql.cc b/client/mysql.cc index 31f563d4116..fe6af909a5a 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -425,8 +425,9 @@ int main(int argc,char *argv[]) } #endif sprintf(buff, "%s", +#ifndef NOT_YET "Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"); -#ifdef NOT_YET +#else "Type 'help [[%]function name[%]]' to get help on usage of function.\n"); #endif put_info(buff,INFO_INFO);