diff options
author | Andrey Borzenkov <bor@users.sourceforge.net> | 2001-06-06 16:38:50 +0000 |
---|---|---|
committer | Andrey Borzenkov <bor@users.sourceforge.net> | 2001-06-06 16:38:50 +0000 |
commit | 6c187b251a73c234afddc2e5142f967ec89e0746 (patch) | |
tree | 0c5d78509dd56c6c26fa9a23b8714b37ca1497bb /Src/prompt.c | |
parent | 573445867adba7bbaf5cf557dfa0cd3c7befa0b6 (diff) | |
download | zsh-6c187b251a73c234afddc2e5142f967ec89e0746.tar.gz zsh-6c187b251a73c234afddc2e5142f967ec89e0746.tar.xz zsh-6c187b251a73c234afddc2e5142f967ec89e0746.zip |
14766: unify %l substitution (tty0, pts/3 etc)
Diffstat (limited to 'Src/prompt.c')
-rw-r--r-- | Src/prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/prompt.c b/Src/prompt.c index 84f88b2d3..47c8af797 100644 --- a/Src/prompt.c +++ b/Src/prompt.c @@ -515,8 +515,8 @@ putpromptchar(int doprint, int endchar) break; case 'l': if (*ttystrname) { - ss = (strncmp(ttystrname, "/dev/tty", 8) ? - ttystrname + 5 : ttystrname + 8); + ss = (strncmp(ttystrname, "/dev/", 5) ? + ttystrname : ttystrname + 5); stradd(ss); } else stradd("()"); |