diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-03-10 20:32:18 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-03-10 20:32:32 -0500 |
commit | af2872325ed461252303ec8b7987058b664843f1 (patch) | |
tree | cb710d0a186a2617ab86b98a5bdb9acd4cbe6934 /manuals/chickadee/Kernel.html | |
parent | 89a3558fb9b094b9a92055e98ad655e9bb799eba (diff) |
Update Chickadee manual.
Diffstat (limited to 'manuals/chickadee/Kernel.html')
-rw-r--r-- | manuals/chickadee/Kernel.html | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/manuals/chickadee/Kernel.html b/manuals/chickadee/Kernel.html index c9d635b..589c71e 100644 --- a/manuals/chickadee/Kernel.html +++ b/manuals/chickadee/Kernel.html @@ -57,8 +57,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -95,10 +118,9 @@ There are many hooks available, so read on to learn about all of them. For information about using Guile’s hook API, see See <a href="http://www.gnu.org/software/guile/manual/html_node/Hooks.html#Hooks">Hooks</a> in <cite>GNU Guile Reference Manual</cite>. </p> <dl> -<dt><a name="index-run_002dgame"></a>Scheme Procedure: <strong>run-game</strong> <em>[#:window-title "Chickadee!"]</em></dt> -<dd><p>[#:window-width 640] [#:window-height 480] [#:window-fullscreen? #f] - [#:update-hz 60] -Start the event loop. This procedure will not return until +<dt><a name="index-run_002dgame"></a>Scheme Procedure: <strong>run-game</strong> <em>[#:window-title "Chickadee!"] [#:window-width 640] [#:window-height 480] [#:window-fullscreen? #f] [#:update-hz 60]</em></dt> +<dd> +<p>Start the event loop. This procedure will not return until <code>abort-game</code> is called. </p> <p>The <code>update-hook</code> will be run <var>update-hz</var> times per second. |