diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-03-29 21:35:39 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-03-29 21:35:39 +0000 |
commit | af8a88e4f5c3ffe5a9d8005709e94b641bc21261 (patch) | |
tree | 4de7cec4341768e9209bd00bea48959233646a9a /Src/zsh.h | |
parent | 6bddc704e8355313593875446e6b0b3903d4c304 (diff) | |
download | zsh-af8a88e4f5c3ffe5a9d8005709e94b641bc21261.tar.gz zsh-af8a88e4f5c3ffe5a9d8005709e94b641bc21261.tar.xz zsh-af8a88e4f5c3ffe5a9d8005709e94b641bc21261.zip |
23248: Completion listing problem with lines nearly screen width
If compiled with debug send dputs() output to $ZSH_DEBUG_LOG if defined.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index a1bdbb036..d6e3d987a 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1925,10 +1925,12 @@ struct heap { # define DPUTS(X,Y) if (!(X)) {;} else dputs(ERRMSG(Y)) # define DPUTS1(X,Y,Z1) if (!(X)) {;} else dputs(ERRMSG(Y), Z1) # define DPUTS2(X,Y,Z1,Z2) if (!(X)) {;} else dputs(ERRMSG(Y), Z1, Z2) +# define DPUTS3(X,Y,Z1,Z2,Z3) if (!(X)) {;} else dputs(ERRMSG(Y), Z1, Z2, Z3) #else # define DPUTS(X,Y) # define DPUTS1(X,Y,Z1) # define DPUTS2(X,Y,Z1,Z2) +# define DPUTS3(X,Y,Z1,Z2,Z3) #endif /**************************/ |