diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-25 11:26:00 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-25 11:26:00 +0000 |
commit | 84584ea58bf0a8f58ed0dcd30d769adffa3377f7 (patch) | |
tree | fd746a37ac3b5dde61bb74f3e4cc056d3857a725 /Src/prompt.c | |
parent | d17398b442de23ab999593fb74f082b6f6112a5e (diff) | |
download | zsh-84584ea58bf0a8f58ed0dcd30d769adffa3377f7.tar.gz zsh-84584ea58bf0a8f58ed0dcd30d769adffa3377f7.tar.xz zsh-84584ea58bf0a8f58ed0dcd30d769adffa3377f7.zip |
25684: make %x and %I consistent with eval line numbering
Diffstat (limited to 'Src/prompt.c')
-rw-r--r-- | Src/prompt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Src/prompt.c b/Src/prompt.c index 7bba51c61..870632ec5 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -726,7 +726,8 @@ putpromptchar(int doprint, int endchar, unsigned int *txtchangep) stradd(Rstring); break; case 'I': - if (funcstack && funcstack->tp != FS_SOURCE) { + if (funcstack && funcstack->tp != FS_SOURCE && + (!intrap || trapisfunc)) { /* * We're in a function or an eval with * EVALLINENO. Calculate the line number in @@ -749,7 +750,8 @@ putpromptchar(int doprint, int endchar, unsigned int *txtchangep) bp += strlen(bp); break; case 'x': - if (funcstack && funcstack->tp != FS_SOURCE) + if (funcstack && funcstack->tp != FS_SOURCE && + (!intrap || trapisfunc)) promptpath(funcstack->filename ? funcstack->filename : "", arg, 0); else |