summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-13 14:37:37 -0400
committerJune McEnroe <june@causal.agency>2018-08-13 14:37:37 -0400
commit372b79b59e961f07699b6c9a1d03ae7ca1c11ea3 (patch)
tree944ece448e14b6c32262285f5e91e8da1aee3712 /ui.c
parentAdd /query, /part and /close (diff)
downloadcatgirl-372b79b59e961f07699b6c9a1d03ae7ca1c11ea3.tar.gz
catgirl-372b79b59e961f07699b6c9a1d03ae7ca1c11ea3.zip
Detect pings anywhere in message
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
.5.3.Herbert Xu 2005-11-14[BUILTIN] Fix \c spillage across echo commandsHerbert Xu On Thu, Nov 03, 2005 at 07:16:53PM +0100, Mike Hommey wrote: > Here is a simple test case: > > #!/bin/dash > echo test\\ test > echo '\c' > echo test\\ test > > it outputs: > test\ test > test\ > > This is due to mis-usage of a global variable. See attached patch for a > fix. Instead of setting rval when \c is detected, this is now set in the return value of conv_escape_str. This prevents the spillage reported in http://bugs.debian.org/337294. 2005-11-13[BUILTIN] Always call conv_escape_str in echocmd