about summary refs log tree commit diff
path: root/Src/builtin.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-09-11 17:14:38 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-09-11 17:14:38 +0000
commitd37f9672cb2e29f7dd3b32c9164250d56549f4bc (patch)
treea3730f8eb050d58307ba5f27b417165aa15644c5 /Src/builtin.c
parentfb67cd46eafb1301844ed98f1c0e8d2cf8cbdee4 (diff)
downloadzsh-d37f9672cb2e29f7dd3b32c9164250d56549f4bc.tar.gz
zsh-d37f9672cb2e29f7dd3b32c9164250d56549f4bc.tar.xz
zsh-d37f9672cb2e29f7dd3b32c9164250d56549f4bc.zip
25651: make getpermtext() output indentation more logical
Diffstat (limited to 'Src/builtin.c')
-rw-r--r--Src/builtin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c
index 69f0aaa6e..8adc7fcb1 100644
--- a/Src/builtin.c
+++ b/Src/builtin.c
@@ -5725,7 +5725,7 @@ bin_trap(char *name, char **argv, UNUSED(Options ops), UNUSED(int func))
 		if (!siglists[sig])
 		    printf("trap -- '' %s\n", name);
 		else {
-		    s = getpermtext(siglists[sig], NULL);
+		    s = getpermtext(siglists[sig], NULL, 0);
 		    printf("trap -- ");
 		    quotedzputs(s, stdout);
 		    printf(" %s\n", name);