Fix calculation of prompt length. Bump PORTREVISION.

PR:		107410
Submitted by:	Bruce Becker <hostmaster at whois dot gts dot net>
This commit is contained in:
Thomas Gellekum 2007-01-07 22:00:21 +00:00
parent ee3df70d62
commit ae84ec6c0f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=181715
2 changed files with 11 additions and 1 deletions

View file

@ -7,7 +7,7 @@
PORTNAME= pdksh
PORTVERSION= 5.2.14p2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= shells
MASTER_SITES= ftp://ftp.cs.mun.ca/pub/pdksh/ \
http://gd.tuwien.ac.at/utils/shells/pdksh/ \

View file

@ -0,0 +1,10 @@
--- edit.c.orig Thu May 13 19:04:33 1999
+++ edit.c Sun Jan 7 22:48:23 2007
@@ -344,6 +344,7 @@
*/
if (*cp && cp[1] == '\r') {
delimiter = *cp;
+ indelimit = !indelimit;
cp += 2;
}