about summary refs log tree commit diff stats
path: root/html/subx/001help.cc.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-05-08 10:25:00 -0700
committerKartik Agaram <vc@akkartik.com>2018-05-08 10:25:00 -0700
commit4bb57a55a0c828dfce12e80651bcc37711335e12 (patch)
treee6b8ebd71157de9d69b87cb47466df6548c2c264 /html/subx/001help.cc.html
parenta809b975108e638fe99a295ce20327e6749499e7 (diff)
downloadmu-4bb57a55a0c828dfce12e80651bcc37711335e12.tar.gz
4239
Diffstat (limited to 'html/subx/001help.cc.html')
-rw-r--r--html/subx/001help.cc.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/html/subx/001help.cc.html b/html/subx/001help.cc.html
index b41814f3..da5d00c5 100644
--- a/html/subx/001help.cc.html
+++ b/html/subx/001help.cc.html
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - subx/001help.cc</title>
-<meta name="Generator" content="Vim/8.0">
+<meta name="Generator" content="Vim/7.4">
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="cpp">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
@@ -15,16 +15,16 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color
 a { color:#eeeeee; text-decoration: none; }
 a:hover { text-decoration: underline; }
 * { font-size: 12pt; font-size: 1em; }
-.CommentedCode { color: #6c6c6c; }
-.PreProc { color: #800080; }
-.LineNr { color: #444444; }
 .Constant { color: #00a0a0; }
-.Delimiter { color: #800080; }
 .SalientComment { color: #00ffff; }
-.Identifier { color: #c0a020; }
-.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; }
 .Comment { color: #9090ff; }
 .Comment a { color:#0000ee; text-decoration:underline; }
+.Delimiter { color: #800080; }
+.LineNr { color: #444444; }
+.Identifier { color: #c0a020; }
+.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; }
+.PreProc { color: #800080; }
+.CommentedCode { color: #6c6c6c; }
 .cSpecial { color: #008000; }
 -->
 </style>
@@ -172,16 +172,16 @@ if ('onhashchange' in window) {
 <span id="L110" class="LineNr">110 </span><span class="Normal">void</span> <a href='001help.cc.html#L110'>dump_and_exit</a><span class="Delimiter">(</span><span class="Normal">int</span> sig<span class="Delimiter">,</span> <a href='001help.cc.html#L208'>unused</a> siginfo_t* dummy1<span class="Delimiter">,</span> <a href='001help.cc.html#L208'>unused</a> <span class="Normal">void</span>* dummy2<span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L111" class="LineNr">111 </span>  <span class="Normal">switch</span> <span class="Delimiter">(</span>sig<span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L112" class="LineNr">112 </span>    <span class="Normal">case</span> <span class="Constant">SIGABRT</span>:
-<span id="L113" class="LineNr">113 </span>      <span class="PreProc">#ifndef __APPLE__</span>
+<span id="L113" class="LineNr">113 </span><span class="PreProc">      #ifndef __APPLE__</span>
 <span id="L114" class="LineNr">114 </span>        cerr &lt;&lt; <span class="Constant">&quot;SIGABRT: might be an integer overflow if it wasn't an assert() failure</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span><span class="Delimiter">;</span>
 <span id="L115" class="LineNr">115 </span>        _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
-<span id="L116" class="LineNr">116 </span>      <span class="PreProc">#endif</span>
+<span id="L116" class="LineNr">116 </span><span class="PreProc">      #endif</span>
 <span id="L117" class="LineNr">117 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
 <span id="L118" class="LineNr">118 </span>    <span class="Normal">case</span> <span class="Constant">SIGILL</span>:
-<span id="L119" class="LineNr">119 </span>      <span class="PreProc">#ifdef __APPLE__</span>
+<span id="L119" class="LineNr">119 </span><span class="PreProc">      #ifdef __APPLE__</span>
 <span id="L120" class="LineNr">120 </span>        cerr &lt;&lt; <span class="Constant">&quot;SIGILL: most likely caused by integer overflow</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span><span class="Delimiter">;</span>
 <span id="L121" class="LineNr">121 </span>        _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
-<span id="L122" class="LineNr">122 </span>      <span class="PreProc">#endif</span>
+<span id="L122" class="LineNr">122 </span><span class="PreProc">      #endif</span>
 <span id="L123" class="LineNr">123 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
 <span id="L124" class="LineNr">124 </span>    <span class="Normal">default</span>:
 <span id="L125" class="LineNr">125 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>