]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix incorrect treatment of RL_PROMPT_START_IGNORE/RL_PROMPT_END_IGNORE,
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 3 Jan 2006 23:32:40 +0000 (23:32 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 3 Jan 2006 23:32:40 +0000 (23:32 +0000)
per http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=343616 via Martin Pitt.

src/bin/psql/prompt.c

index 9e443cb126682524d1f1722c9116a6deea1b7ec6..bfb190559a5e672b91d392ab5216389c2eb38ee7 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2000-2005, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.38 2005/01/01 05:43:08 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.38.4.1 2006/01/03 23:32:40 tgl Exp $
  */
 #include "postgres_fe.h"
 #include "prompt.h"
@@ -299,8 +299,8 @@ get_prompt(promptStatus_t status)
                                         * such, in order to properly display the line during
                                         * editing.
                                         */
-                                       buf[0] = '\001';
-                                       buf[1] = (*p == '[') ? RL_PROMPT_START_IGNORE : RL_PROMPT_END_IGNORE;
+                                       buf[0] = (*p == '[') ? RL_PROMPT_START_IGNORE : RL_PROMPT_END_IGNORE;
+                                       buf[1] = '\0';
 #endif   /* USE_READLINE */
                                        break;