• R/O
  • SSH
  • HTTPS

jnethack: Commit


Commit MetaInfo

Revision706 (tree)
Time2013-03-31 23:33:52
Authorargrath

Log Message

fix bug #30923

Change Summary

Incremental Difference

--- jnethack/trunk/src/role.c (revision 705)
+++ jnethack/trunk/src/role.c (revision 706)
@@ -776,7 +776,11 @@
776776
777777 /* Table of all genders */
778778 const struct Gender genders[] = {
779-/*JP: オプションで使っているので英語名を残しておく。 (see you.h) */
779+/*JP:
780+- オプションで使っているので英語名を残しておく。 (see you.h)
781+- steed.c kick_steed() He[] に値がコピーされるので長さを変えたときには
782+ 該当部も要修正。
783+*/
780784 #if 0 /*JP*/
781785 {"male", "he", "him", "his", "Mal", ROLE_MALE},
782786 {"female", "she", "her", "her", "Fem", ROLE_FEMALE},
--- jnethack/trunk/src/steed.c (revision 705)
+++ jnethack/trunk/src/steed.c (revision 706)
@@ -497,7 +497,12 @@
497497 void
498498 kick_steed()
499499 {
500+#if 0 /*JP*/
500501 char He[4];
502+#else
503+ /* role.c Gender.he の値がコピーされる */
504+ char He[16];
505+#endif
501506 if (!u.usteed)
502507 return;
503508
@@ -521,7 +526,7 @@
521526 #if 0 /*JP*/
522527 pline("%s stirs.", He);
523528 #else
524- pline("%sは動き出した.", He);
529+ pline("%sは身じろぎした.", He);
525530 #endif
526531 else
527532 #if 0 /*JP*/
Show on old repository browser