bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bash 3.2: defect in lib/readline/rltty.c


From: jim . brown
Subject: Bash 3.2: defect in lib/readline/rltty.c
Date: Thu, 8 Mar 2007 12:46:58 -0500 (EST)
User-agent: SquirrelMail/1.4.8-2.el3

Missing macro line continuation in middle of declaration.

diff -r -c bash-3.2.orig/lib/readline/rltty.c bash-3.2/lib/readline/rltty.c
*** bash-3.2.orig/lib/readline/rltty.c  Mon Dec 26 17:21:50 2005
--- bash-3.2/lib/readline/rltty.c       Thu Mar  8 10:23:43 2007
***************
*** 862,868 ****
  }

  #define RESET_SPECIAL(c) \
!   if (c != -1 && kmap[(unsigned char)c].type == ISFUNC)
      kmap[(unsigned char)c].function = rl_insert;

  static void
--- 862,868 ----
  }

  #define RESET_SPECIAL(c) \
!   if (c != -1 && kmap[(unsigned char)c].type == ISFUNC) \
      kmap[(unsigned char)c].function = rl_insert;

  static void





reply via email to

[Prev in Thread] Current Thread [Next in Thread]