summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-28 13:14:47 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-10-28 13:14:47 +0100
commit3d36308c26ced2b86cbd8a2b48a5732ccde90e89 (patch)
treef5f376437185028b0d057e8fe778aecb2496e256
parent9232e2cf62fe475bdf3a9ab10fb0aeacf6a82102 (diff)
downloadcrawl-ref-3d36308c26ced2b86cbd8a2b48a5732ccde90e89.tar.gz
crawl-ref-3d36308c26ced2b86cbd8a2b48a5732ccde90e89.zip
Don't use an obscure word in a comment.
"Everyone not a moron will know it" is true only in Poland, and contrary to my unconscious assumption, imported words are not equally widespread everywhere -- especially that Sienkiewicz got it totally wrong. With his novels being until recently mandatory reading he effectively created a new word. Thus: "kęsim" -- a writer's impression of Tatar word for "decapitation". Isn't "learn a word a day" fun?
-rw-r--r--crawl-ref/source/util/fake_pty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/fake_pty.c b/crawl-ref/source/util/fake_pty.c
index fbf0aaa999..20d2c37858 100644
--- a/crawl-ref/source/util/fake_pty.c
+++ b/crawl-ref/source/util/fake_pty.c
@@ -27,7 +27,7 @@ static void slurp_output()
pfd.fd = crawl;
pfd.events = POLLIN;
- while (poll(&pfd, 1, 60000) > 0) // 60 seconds with no output -> kesim
+ while (poll(&pfd, 1, 60000) > 0) // 60 seconds with no output -> die die die!
{
if (read(tty, buf, sizeof(buf)) <= 0)
break;