]> granicus.if.org Git - nethack/log
nethack
6 years agoMerge branch 'NetHack-3.6.2-beta01' into macosx-minor
Bart House [Tue, 27 Nov 2018 06:45:22 +0000 (22:45 -0800)]
Merge branch 'NetHack-3.6.2-beta01' into macosx-minor

6 years agoadjust sample config file when STATUS_HILITES isn't defined
nhmall [Sun, 25 Nov 2018 04:14:20 +0000 (23:14 -0500)]
adjust sample config file when STATUS_HILITES isn't defined

On Windows, if you build without STATUS_HILITES defined,
you'll be greeted by the following barrage of errors when
you start the game.

On Windows, use makedefs to detect that STATUS_HILITES
isn't defined, and comment out the offending lines in
the sample config file.

Errors received before this change:

OPTIONS=statushilites
  * Line 197: 'statushilites' is not supported.

 OPTIONS=hilite_status:hitpoints/100%/gray&normal
  * Line 200: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hitpoints/<100%/green&normal
  * Line 201: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hitpoints/<66%/yellow&normal
  * Line 202: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hitpoints/<50%/orange&normal
  * Line 203: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hitpoints/<33%/red&bold
  * Line 204: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hitpoints/<15%/red&inverse
  * Line 205: 'hilite_status' is not supported.

 OPTIONS=hilite_status:power/100%/gray&normal
  * Line 208: 'hilite_status' is not supported.

 OPTIONS=hilite_status:power/<100%/green&normal
  * Line 209: 'hilite_status' is not supported.

 OPTIONS=hilite_status:power/<66%/yellow&normal
  * Line 210: 'hilite_status' is not supported.

 OPTIONS=hilite_status:power/<50%/orange&normal
  * Line 211: 'hilite_status' is not supported.

 OPTIONS=hilite_status:power/<33%/red&bold
  * Line 212: 'hilite_status' is not supported.

 OPTIONS=hilite_status:cap/burdened/yellow/stressed/orange/strained/red&bold/ove
 rtaxed/red&inverse/overloaded/red&inverse&blink
  * Line 215: 'hilite_status' is not supported.

 OPTIONS=hilite_status:hunger/satiated/yellow/hungry/orange/weak/red&bold/fainti
 ng/red&inverse/fainted/red&inverse&blink
  * Line 218: 'hilite_status' is not supported.
 Hit <Enter> to continue.

6 years agobuild fix when STATUS_HILITES is not defined
nhmall [Sun, 25 Nov 2018 02:41:22 +0000 (21:41 -0500)]
build fix when STATUS_HILITES is not defined

6 years agofix github pull request #161 - scatter()
PatR [Sat, 24 Nov 2018 23:22:33 +0000 (15:22 -0800)]
fix github pull request #161 - scatter()

Fixes #161

Report states that scattering objects might leave a 'pile' glyph when
no longer appropriate.  I didn't try to reproduce that, just took it
on faith.  The fix tried to be too efficient and might have missed
fixing the display if breaks() or ohitmon() destroyed the objects
being scattered and left 'total' at 0.

6 years agofix #H7596 - magic trap 'deafening roar' outcome
PatR [Sat, 24 Nov 2018 23:01:30 +0000 (15:01 -0800)]
fix #H7596 - magic trap 'deafening roar' outcome

doesn't wake monsters.  Now it does.

6 years agofix #H7591 - migrating monsters vs full levels
PatR [Sat, 24 Nov 2018 09:45:09 +0000 (01:45 -0800)]
fix #H7591 - migrating monsters vs full levels

During level change, when a monster from mydogs (monsters accompaying
hero, usually pets) couldn't be placed because the level was full, it
was set to migrate to that level (in order to get another chance to
arrive if hero left and returned).  The code sequence
 mon_arrive()-> mnexto()-> m_into_limbo()-> migrate_to_level()-> relmon()
tried to remove the monster from the map, but it wasn't necessarily on
the map (depending upon whether it couldn't arrive at all, or arrived
at the hero's spot and couldn't be moved out of the hero's way).  The
EXTRA_SANITY_CHECKS for remove_monster() issued impossible "no monster
to remove".  relmon() now checks whether monster is already off the map.

While investigating that, I discovered that pets set to re-migrate
to the same level to try again on hero's next visit didn't work at all.
migrating_mons gets processed after mydogs so moving something from
the latter to the former after arrival failure just resulted in
immediate second failure when the more general list was handled during
the hero's current arrival.  And failure to arrive from migrating_mons
would kill the monster instead of scheduling another attempt.

The sanest fix for that turned out to be to have all monsters who
can't arrive be put back on the migrating_mons list to try again upon
hero's next visit.  Pets still fail twice but are no longer discarded
during the second time, and now do arrive when hero leaves and comes
back provided he or she has opened up some space before leaving.  If
there's still no space on the next visit, monsters who can't arrive
then are scheduled to try again on the visit after that.

Recent fix for invalid corpses becomes moot.  Monsters aren't killed
during arrival failure so there are no resulting corpses to deal with.

6 years agoRevert "Revert "Send travis notification mails to mailing list""
Patric Mueller [Sat, 24 Nov 2018 09:07:38 +0000 (10:07 +0100)]
Revert "Revert "Send travis notification mails to mailing list""

This reverts commit 8edaa021d5a64ca9eb6896d7e0e929dc62682b34.

6 years agoRevert "Send travis notification mails to mailing list"
nhmall [Sat, 24 Nov 2018 03:17:40 +0000 (22:17 -0500)]
Revert "Send travis notification mails to mailing list"

This reverts commit d60097b2868d1f7403ddaa10d48d3be59bc7c1bb.

6 years agoRevert "Removed unnecessary use of static for nocreate values."
nhmall [Sat, 24 Nov 2018 03:17:38 +0000 (22:17 -0500)]
Revert "Removed unnecessary use of static for nocreate values."

This reverts commit 74fc1403e308fef55768ab44e72f6a8074cc3458.

6 years agoRevert "Modified how we initialize save file info."
nhmall [Sat, 24 Nov 2018 03:17:35 +0000 (22:17 -0500)]
Revert "Modified how we initialize save file info."

This reverts commit 44b002c9f3dbaea045fa83affb488adfb2a597e1.

6 years agoRevert "Added PLAYAGAIN experimental support definition."
nhmall [Sat, 24 Nov 2018 03:17:33 +0000 (22:17 -0500)]
Revert "Added PLAYAGAIN experimental support definition."

This reverts commit ea8cf6613a12bcab686453905bc074eef8a74828.

6 years agoRevert "Revert "Modified how we initialize save file info.""
nhmall [Sat, 24 Nov 2018 03:17:31 +0000 (22:17 -0500)]
Revert "Revert "Modified how we initialize save file info.""

This reverts commit 05c9ccc0356f96e8f49f5792f598dcb813e10488.

6 years agoRevert "Added nhassert() support to tile2bmp."
nhmall [Sat, 24 Nov 2018 03:17:29 +0000 (22:17 -0500)]
Revert "Added nhassert() support to tile2bmp."

This reverts commit a27fd2d83daf464ea8dbfaf6eef98c270b2d1e79.

6 years agoRevert "Added nhassert() support."
nhmall [Sat, 24 Nov 2018 03:17:26 +0000 (22:17 -0500)]
Revert "Added nhassert() support."

This reverts commit 31dc1c9233960606fa049fbd6377d2ba7c379036.

6 years agoRevert "Added decl_early_init() which is called when PLAYAGAIN is supported."
nhmall [Sat, 24 Nov 2018 03:17:24 +0000 (22:17 -0500)]
Revert "Added decl_early_init() which is called when PLAYAGAIN is supported."

This reverts commit acbe4d9242c78cbae351a3836b19d3c17d94db58.

6 years agoRevert "Previous encumberance state moved to decl.c."
nhmall [Sat, 24 Nov 2018 03:17:22 +0000 (22:17 -0500)]
Revert "Previous encumberance state moved to decl.c."

This reverts commit 4e774197a6161c015f350933430a20449782c96b.

6 years agoRevert "Moved petname_used to decl.c"
nhmall [Sat, 24 Nov 2018 03:17:20 +0000 (22:17 -0500)]
Revert "Moved petname_used to decl.c"

This reverts commit 6272c3703544cb01ef6558b80baa95105368f52e.

6 years agoRevert "Initial check in of icontext."
nhmall [Sat, 24 Nov 2018 03:17:18 +0000 (22:17 -0500)]
Revert "Initial check in of icontext."

This reverts commit 5bbe3cd6bb52456072c42c50bd7ed039d24c03d2.

6 years agoRevert "check."
nhmall [Sat, 24 Nov 2018 03:17:16 +0000 (22:17 -0500)]
Revert "check."

This reverts commit 7814d9097a0d5b5ceddb530121633998a9fc148a.

6 years agoRevert "Fixed nocreate."
nhmall [Sat, 24 Nov 2018 03:17:14 +0000 (22:17 -0500)]
Revert "Fixed nocreate."

This reverts commit 244a473a19866d7e74d82d7ae7457a1355aaa463.

6 years agoRevert "Instance variable work check-point."
nhmall [Sat, 24 Nov 2018 03:17:12 +0000 (22:17 -0500)]
Revert "Instance variable work check-point."

This reverts commit 8e316df117e10f83ed93c56e95390720b4e1174c.

6 years agoRevert "Instance variable work."
nhmall [Sat, 24 Nov 2018 03:17:09 +0000 (22:17 -0500)]
Revert "Instance variable work."

This reverts commit 14bf74c8629fe1731cb0dc72afa263256980f89f.

6 years agoRevert "Renamed instance_variables to global_variables and iv to g."
nhmall [Sat, 24 Nov 2018 03:17:07 +0000 (22:17 -0500)]
Revert "Renamed instance_variables to global_variables and iv to g."

This reverts commit f9a0db6c448b7ff8e6cc6ce854f930edc96da7e6.

6 years agoRevert "rumors.c static globals moved to instance_globals."
nhmall [Sat, 24 Nov 2018 03:17:05 +0000 (22:17 -0500)]
Revert "rumors.c static globals moved to instance_globals."

This reverts commit 6a78b203e425d2d355195c865036866ed4661a65.

6 years agoRevert "rfilter initialized to UNDEFINED."
nhmall [Sat, 24 Nov 2018 03:17:03 +0000 (22:17 -0500)]
Revert "rfilter initialized to UNDEFINED."

This reverts commit 716c2ceccfd9f8e6efda03942f7135a4cd9e2eeb.

6 years agoRevert "Renamed UNDEFINED to UNDEFINED_VALUE."
nhmall [Sat, 24 Nov 2018 03:17:01 +0000 (22:17 -0500)]
Revert "Renamed UNDEFINED to UNDEFINED_VALUE."

This reverts commit cee4933c244c03e813cbd6d10c8c61104ccc27fd.

6 years agoRevert "restore.c globals moved to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:59 +0000 (22:16 -0500)]
Revert "restore.c globals moved to instance_globals."

This reverts commit 865c4d5a7d64250ad97db4267b4b46282ec31b27.

6 years agoRevert "Moved read.c globals to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:56 +0000 (22:16 -0500)]
Revert "Moved read.c globals to instance_globals."

This reverts commit d37a91a6b8bdbead0f64187b54167e3a430fcb19.

6 years agoRevert "Moved potion.c globals to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:54 +0000 (22:16 -0500)]
Revert "Moved potion.c globals to instance_globals."

This reverts commit d3c192e5a800301f862edce8e75904408037c9ce.

6 years agoRevert "define nhassert if not defined by port."
nhmall [Sat, 24 Nov 2018 03:16:52 +0000 (22:16 -0500)]
Revert "define nhassert if not defined by port."

This reverts commit cff9fb441a59d06134b731c57d84fe9c1b2143a0.

6 years agoRevert "Fix compiler warnings in macos build."
nhmall [Sat, 24 Nov 2018 03:16:49 +0000 (22:16 -0500)]
Revert "Fix compiler warnings in macos build."

This reverts commit 0d59f1a22bb6280999eed2bb2fb567c80a96a17d.

6 years agoRevert "Moved sex_change_ok to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:47 +0000 (22:16 -0500)]
Revert "Moved sex_change_ok to instance_globals."

This reverts commit ee22210a6860572dac9d0f95cbc0067a755431cf.

6 years agoRevert "topl.c globals moved to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:45 +0000 (22:16 -0500)]
Revert "topl.c globals moved to instance_globals."

This reverts commit b384223e1be79a2f12c9db7b8097b3a51d3a96aa.

6 years agoRevert "Fix g.restoring comments."
nhmall [Sat, 24 Nov 2018 03:16:42 +0000 (22:16 -0500)]
Revert "Fix g.restoring comments."

This reverts commit ad725c0f0f50728100d9cca28cfaaae50cb4ca94.

6 years agoRevert "Moved pickup globals to instance_globals."
nhmall [Sat, 24 Nov 2018 03:16:40 +0000 (22:16 -0500)]
Revert "Moved pickup globals to instance_globals."

This reverts commit 01596f166095f307eed6c705590cb7e0dd024f10.

6 years agoRevert "objnam.c globals moved to instance globals."
nhmall [Sat, 24 Nov 2018 03:16:35 +0000 (22:16 -0500)]
Revert "objnam.c globals moved to instance globals."

This reverts commit 041e55467aecbecdc40539df38daafddbcc09acd.

6 years agoRevert "Modified objects initialization to support re-entry."
nhmall [Sat, 24 Nov 2018 03:16:24 +0000 (22:16 -0500)]
Revert "Modified objects initialization to support re-entry."

This reverts commit c3eefefc991999ef2f322dabd439d3bca601fe32.

6 years agoRevert "Removing prototype for decl_globals_init()."
nhmall [Sat, 24 Nov 2018 03:15:37 +0000 (22:15 -0500)]
Revert "Removing prototype for decl_globals_init()."

This reverts commit 26d03b5017c74c7b1895af16e9f273820b04b67f.

6 years agoRemoving prototype for decl_globals_init().
Bart House [Fri, 23 Nov 2018 23:47:18 +0000 (15:47 -0800)]
Removing prototype for decl_globals_init().

6 years agoMerge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win...
Bart House [Fri, 23 Nov 2018 23:23:06 +0000 (15:23 -0800)]
Merge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win-bart

6 years agoModified objects initialization to support re-entry.
Bart House [Fri, 23 Nov 2018 23:13:22 +0000 (15:13 -0800)]
Modified objects initialization to support re-entry.

6 years agoobjnam.c globals moved to instance globals.
Bart House [Fri, 23 Nov 2018 21:37:30 +0000 (13:37 -0800)]
objnam.c globals moved to instance globals.

6 years agoMoved pickup globals to instance_globals.
Bart House [Fri, 23 Nov 2018 21:30:51 +0000 (13:30 -0800)]
Moved pickup globals to instance_globals.

6 years agoFix g.restoring comments.
Bart House [Fri, 23 Nov 2018 21:30:32 +0000 (13:30 -0800)]
Fix g.restoring comments.

6 years agotopl.c globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 21:13:28 +0000 (13:13 -0800)]
topl.c globals moved to instance_globals.

6 years agoMoved sex_change_ok to instance_globals.
Bart House [Fri, 23 Nov 2018 20:43:38 +0000 (12:43 -0800)]
Moved sex_change_ok to instance_globals.

6 years agoFix compiler warnings in macos build.
Bart House [Fri, 23 Nov 2018 20:27:55 +0000 (12:27 -0800)]
Fix compiler warnings in macos build.

6 years agodefine nhassert if not defined by port.
Bart House [Fri, 23 Nov 2018 19:27:40 +0000 (11:27 -0800)]
define nhassert if not defined by port.

6 years agoMoved potion.c globals to instance_globals.
Bart House [Fri, 23 Nov 2018 19:23:03 +0000 (11:23 -0800)]
Moved potion.c globals to instance_globals.

6 years agoMoved read.c globals to instance_globals.
Bart House [Fri, 23 Nov 2018 18:47:52 +0000 (10:47 -0800)]
Moved read.c globals to instance_globals.

6 years agorestore.c globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 18:36:45 +0000 (10:36 -0800)]
restore.c globals moved to instance_globals.

6 years agoRenamed UNDEFINED to UNDEFINED_VALUE.
Bart House [Fri, 23 Nov 2018 18:22:01 +0000 (10:22 -0800)]
Renamed UNDEFINED to UNDEFINED_VALUE.

6 years agorfilter initialized to UNDEFINED.
Bart House [Fri, 23 Nov 2018 18:15:22 +0000 (10:15 -0800)]
rfilter initialized to UNDEFINED.

6 years agorumors.c static globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 18:05:21 +0000 (10:05 -0800)]
rumors.c static globals moved to instance_globals.

6 years agoRenamed instance_variables to global_variables and iv to g.
Bart House [Fri, 23 Nov 2018 17:27:10 +0000 (09:27 -0800)]
Renamed instance_variables to global_variables and iv to g.

6 years agoInstance variable work.
Bart House [Fri, 23 Nov 2018 13:13:06 +0000 (05:13 -0800)]
Instance variable work.

6 years agoInstance variable work check-point.
Bart House [Fri, 23 Nov 2018 12:49:51 +0000 (04:49 -0800)]
Instance variable work check-point.

6 years agoFixed nocreate.
Bart House [Fri, 23 Nov 2018 05:55:03 +0000 (21:55 -0800)]
Fixed nocreate.

6 years agocheck.
Bart House [Fri, 23 Nov 2018 05:40:15 +0000 (21:40 -0800)]
check.

6 years agoInitial check in of icontext.
Bart House [Fri, 23 Nov 2018 04:47:22 +0000 (20:47 -0800)]
Initial check in of icontext.

6 years agoMoved petname_used to decl.c
Bart House [Thu, 22 Nov 2018 23:49:43 +0000 (15:49 -0800)]
Moved petname_used to decl.c

6 years agoPrevious encumberance state moved to decl.c.
Bart House [Thu, 22 Nov 2018 23:40:31 +0000 (15:40 -0800)]
Previous encumberance state moved to decl.c.

6 years agoAdded decl_early_init() which is called when PLAYAGAIN is supported.
Bart House [Thu, 22 Nov 2018 23:20:17 +0000 (15:20 -0800)]
Added decl_early_init() which is called when PLAYAGAIN is supported.

decl_early_init() is called when we are starting a game.  On first
start, it validates that global state is in the expected state.
When called on subsequent starts, it initializes global state to
expected state.

6 years agoAdded nhassert() support.
Bart House [Thu, 22 Nov 2018 23:03:26 +0000 (15:03 -0800)]
Added nhassert() support.

6 years agoAdded nhassert() support to tile2bmp.
Bart House [Thu, 22 Nov 2018 23:03:00 +0000 (15:03 -0800)]
Added nhassert() support to tile2bmp.

6 years agoRevert "Modified how we initialize save file info."
Bart House [Thu, 22 Nov 2018 22:21:31 +0000 (14:21 -0800)]
Revert "Modified how we initialize save file info."

This reverts commit 250ca464bc2aa5ec565b73c2cbaf9308c8592a70.

6 years agoAdded PLAYAGAIN experimental support definition.
Bart House [Thu, 22 Nov 2018 21:05:44 +0000 (13:05 -0800)]
Added PLAYAGAIN experimental support definition.

6 years agoModified how we initialize save file info.
Bart House [Thu, 22 Nov 2018 21:01:58 +0000 (13:01 -0800)]
Modified how we initialize save file info.

There should be no net change other then improving code maintenance.

6 years agoRemoved unnecessary use of static for nocreate values.
Bart House [Thu, 22 Nov 2018 18:15:43 +0000 (10:15 -0800)]
Removed unnecessary use of static for nocreate values.

If multiple games are played without exiting the process, on the second
new player creation the nocreate values will already be set based
on the first player creation.

6 years agoModified objects initialization to support re-entry.
Bart House [Fri, 23 Nov 2018 23:13:22 +0000 (15:13 -0800)]
Modified objects initialization to support re-entry.

6 years agoobjnam.c globals moved to instance globals.
Bart House [Fri, 23 Nov 2018 21:37:30 +0000 (13:37 -0800)]
objnam.c globals moved to instance globals.

6 years agoMoved pickup globals to instance_globals.
Bart House [Fri, 23 Nov 2018 21:30:51 +0000 (13:30 -0800)]
Moved pickup globals to instance_globals.

6 years agoFix g.restoring comments.
Bart House [Fri, 23 Nov 2018 21:30:32 +0000 (13:30 -0800)]
Fix g.restoring comments.

6 years agotopl.c globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 21:13:28 +0000 (13:13 -0800)]
topl.c globals moved to instance_globals.

6 years agoMoved sex_change_ok to instance_globals.
Bart House [Fri, 23 Nov 2018 20:43:38 +0000 (12:43 -0800)]
Moved sex_change_ok to instance_globals.

6 years agoFix compiler warnings in macos build.
Bart House [Fri, 23 Nov 2018 20:27:55 +0000 (12:27 -0800)]
Fix compiler warnings in macos build.

6 years agodefine nhassert if not defined by port.
Bart House [Fri, 23 Nov 2018 19:27:40 +0000 (11:27 -0800)]
define nhassert if not defined by port.

6 years agoMoved potion.c globals to instance_globals.
Bart House [Fri, 23 Nov 2018 19:23:03 +0000 (11:23 -0800)]
Moved potion.c globals to instance_globals.

6 years agoMoved read.c globals to instance_globals.
Bart House [Fri, 23 Nov 2018 18:47:52 +0000 (10:47 -0800)]
Moved read.c globals to instance_globals.

6 years agorestore.c globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 18:36:45 +0000 (10:36 -0800)]
restore.c globals moved to instance_globals.

6 years agoRenamed UNDEFINED to UNDEFINED_VALUE.
Bart House [Fri, 23 Nov 2018 18:22:01 +0000 (10:22 -0800)]
Renamed UNDEFINED to UNDEFINED_VALUE.

6 years agorfilter initialized to UNDEFINED.
Bart House [Fri, 23 Nov 2018 18:15:22 +0000 (10:15 -0800)]
rfilter initialized to UNDEFINED.

6 years agorumors.c static globals moved to instance_globals.
Bart House [Fri, 23 Nov 2018 18:05:21 +0000 (10:05 -0800)]
rumors.c static globals moved to instance_globals.

6 years agoSend travis notification mails to mailing list
Patric Mueller [Fri, 23 Nov 2018 17:56:25 +0000 (18:56 +0100)]
Send travis notification mails to mailing list

6 years agoRenamed instance_variables to global_variables and iv to g.
Bart House [Fri, 23 Nov 2018 17:27:10 +0000 (09:27 -0800)]
Renamed instance_variables to global_variables and iv to g.

6 years agoAdd some commented out flags to linux hints file
Pasi Kallinen [Fri, 23 Nov 2018 17:20:59 +0000 (19:20 +0200)]
Add some commented out flags to linux hints file

6 years agoAdding a travis job for a minimal build
Patric Mueller [Fri, 23 Nov 2018 15:22:41 +0000 (16:22 +0100)]
Adding a travis job for a minimal build

6 years agoBuilding tty, X11, and QT5 builds on Travis
Patric Mueller [Wed, 14 Nov 2018 14:28:37 +0000 (15:28 +0100)]
Building tty, X11, and QT5 builds on Travis

6 years agoifdef, not if
Pasi Kallinen [Fri, 23 Nov 2018 13:15:04 +0000 (15:15 +0200)]
ifdef, not if

6 years agoInstance variable work.
Bart House [Fri, 23 Nov 2018 13:13:06 +0000 (05:13 -0800)]
Instance variable work.

6 years agoInstance variable work check-point.
Bart House [Fri, 23 Nov 2018 12:49:51 +0000 (04:49 -0800)]
Instance variable work check-point.

6 years agoMerge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win...
Bart House [Fri, 23 Nov 2018 06:19:47 +0000 (22:19 -0800)]
Merge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win-bart

6 years agoInitial check in of icontext work.
Bart House [Thu, 22 Nov 2018 18:15:43 +0000 (10:15 -0800)]
Initial check in of icontext work.

6 years agoMerge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win...
Bart House [Fri, 23 Nov 2018 06:07:22 +0000 (22:07 -0800)]
Merge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win-bart

6 years agoFixed nocreate.
Bart House [Fri, 23 Nov 2018 05:40:15 +0000 (21:40 -0800)]
Fixed nocreate.

6 years agoFixed nocreate.
Bart House [Fri, 23 Nov 2018 05:55:03 +0000 (21:55 -0800)]
Fixed nocreate.

6 years agocheck.
Bart House [Fri, 23 Nov 2018 05:40:15 +0000 (21:40 -0800)]
check.

6 years agoMerge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win...
Bart House [Fri, 23 Nov 2018 05:39:57 +0000 (21:39 -0800)]
Merge branch 'win-bart' of https://rodney.nethack.org:20040/git/NHsource into win-bart

6 years agoInitial check-in of icontext work.
Bart House [Thu, 22 Nov 2018 21:01:58 +0000 (13:01 -0800)]
Initial check-in of icontext work.

6 years agoInitial check in of icontext.
Bart House [Fri, 23 Nov 2018 04:47:22 +0000 (20:47 -0800)]
Initial check in of icontext.