Mercurial > urweb
comparison src/settings.sml @ 1114:01b6c7144a44
Deadlines
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 03 Jan 2010 15:58:34 -0500 |
parents | 82ac88b4e0a7 |
children | 74f2eb3b0606 |
comparison
equal
deleted
inserted
replaced
1113:40d48a2b78a7 | 1114:01b6c7144a44 |
---|---|
1 (* Copyright (c) 2008-2009, Adam Chlipala | 1 (* Copyright (c) 2008-2010, Adam Chlipala |
2 * All rights reserved. | 2 * All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are met: | 5 * modification, are permitted provided that the following conditions are met: |
6 * | 6 * |
434 | 434 |
435 val staticLinking = ref false | 435 val staticLinking = ref false |
436 fun setStaticLinking b = staticLinking := b | 436 fun setStaticLinking b = staticLinking := b |
437 fun getStaticLinking () = !staticLinking | 437 fun getStaticLinking () = !staticLinking |
438 | 438 |
439 val deadlines = ref false | |
440 fun setDeadlines b = deadlines := b | |
441 fun getDeadlines () = !deadlines | |
442 | |
439 end | 443 end |