diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2003-09-10 10:05:42 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2003-09-10 10:05:42 +0000 |
commit | 9963fdefa58707e45f08a31ee27c955311d80021 (patch) | |
tree | fab34b19b1f83b2eb78903223f7c132c5b50d14e /games/freebsd-games/files/patch-phantasia::io.c | |
parent | Release the port to ports@, reason: ENOTIME. (diff) |
. Treat carriage returns the same as linefeeds when entering data. This
allows the Enter key to work correctly when entering a name.
PR: 34759
Notes
Notes:
svn path=/head/; revision=88918
Diffstat (limited to 'games/freebsd-games/files/patch-phantasia::io.c')
-rw-r--r-- | games/freebsd-games/files/patch-phantasia::io.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/games/freebsd-games/files/patch-phantasia::io.c b/games/freebsd-games/files/patch-phantasia::io.c new file mode 100644 index 000000000000..29f05cf1265f --- /dev/null +++ b/games/freebsd-games/files/patch-phantasia::io.c @@ -0,0 +1,26 @@ +Index: phantasia/io.c +=================================================================== +RCS file: /var/fcvs/src/games/phantasia/Attic/io.c,v +retrieving revision 1.6 +diff -u -r1.6 io.c +--- phantasia/io.c 16 Nov 1999 02:57:33 -0000 1.6 ++++ phantasia/io.c 10 Sep 2003 09:52:52 -0000 +@@ -79,6 +79,9 @@ + case CH_NEWLINE: /* terminate string */ + break; + ++ case CH_CR: /* terminate string */ ++ break; ++ + case CH_REDRAW: /* redraw screen */ + clearok(stdscr, TRUE); + continue; +@@ -91,7 +94,7 @@ + + *inptr = '\0'; /* terminate string */ + } +- while (ch != CH_NEWLINE && inptr < cp + mx); ++ while (ch != CH_NEWLINE && ch != CH_CR && inptr < cp + mx); + } + /**/ + /************************************************************************ |