about summary refs log tree commit diff stats
path: root/html/001help.cc.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-09-07 22:42:23 -0700
committerKartik Agaram <vc@akkartik.com>2018-09-07 22:42:23 -0700
commitc762564bd754884e847922c99172076fde4d646e (patch)
tree52b51d72a8e0bf29c94f5c01c13f098399830082 /html/001help.cc.html
parent1a62e61df42bfdf001010700c1e1042c67d62ec2 (diff)
downloadmu-c762564bd754884e847922c99172076fde4d646e.tar.gz
4539
Diffstat (limited to 'html/001help.cc.html')
-rw-r--r--html/001help.cc.html21
1 files changed, 10 insertions, 11 deletions
diff --git a/html/001help.cc.html b/html/001help.cc.html
index 9cccd867..cf25168c 100644
--- a/html/001help.cc.html
+++ b/html/001help.cc.html
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - 001help.cc</title>
-<meta name="Generator" content="Vim/7.4">
+<meta name="Generator" content="Vim/8.0">
 <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,15 @@ 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; }
+.LineNr { color: #444444; }
 .Constant { color: #00a0a0; }
-.SalientComment { color: #00ffff; }
-.Comment { color: #9090ff; }
-.Comment a { color:#0000ee; text-decoration:underline; }
 .Delimiter { color: #800080; }
-.LineNr { color: #444444; }
+.SalientComment { color: #00ffff; }
 .Identifier { color: #c0a020; }
 .Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; }
-.PreProc { color: #800080; }
-.CommentedCode { color: #6c6c6c; }
+.Comment { color: #9090ff; }
+.Comment a { color:#0000ee; text-decoration:underline; }
 .cSpecial { color: #008000; }
 -->
 </style>
@@ -222,16 +221,16 @@ if ('onhashchange' in window) {
 <span id="L160" class="LineNr">160 </span><span class="Normal">void</span> <a href='001help.cc.html#L160'>dump_and_exit</a><span class="Delimiter">(</span><span class="Normal">int</span> sig<span class="Delimiter">,</span> siginfo_t* <span class="Comment">/*</span><span class="Comment">unused</span><span class="Comment">*/</span><span class="Delimiter">,</span> <span class="Normal">void</span>* <span class="Comment">/*</span><span class="Comment">unused</span><span class="Comment">*/</span><span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L161" class="LineNr">161 </span>  <span class="Normal">switch</span> <span class="Delimiter">(</span>sig<span class="Delimiter">)</span> <span class="Delimiter">{</span>
 <span id="L162" class="LineNr">162 </span>    <span class="Normal">case</span> <span class="Constant">SIGABRT</span>:
-<span id="L163" class="LineNr">163 </span><span class="PreProc">      #ifndef __APPLE__</span>
+<span id="L163" class="LineNr">163 </span>      <span class="Comment">#ifndef __APPLE__</span>
 <span id="L164" class="LineNr">164 </span>        cerr &lt;&lt; <span class="Constant">&quot;SIGABRT: might be an integer overflow if it wasn't an assert() failure or exception</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span><span class="Delimiter">;</span>
 <span id="L165" class="LineNr">165 </span>        _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
-<span id="L166" class="LineNr">166 </span><span class="PreProc">      #endif</span>
+<span id="L166" class="LineNr">166 </span>      <span class="Comment">#endif</span>
 <span id="L167" class="LineNr">167 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
 <span id="L168" class="LineNr">168 </span>    <span class="Normal">case</span> <span class="Constant">SIGILL</span>:
-<span id="L169" class="LineNr">169 </span><span class="PreProc">      #ifdef __APPLE__</span>
+<span id="L169" class="LineNr">169 </span>      <span class="Comment">#ifdef __APPLE__</span>
 <span id="L170" class="LineNr">170 </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="L171" class="LineNr">171 </span>        _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
-<span id="L172" class="LineNr">172 </span><span class="PreProc">      #endif</span>
+<span id="L172" class="LineNr">172 </span>      <span class="Comment">#endif</span>
 <span id="L173" class="LineNr">173 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>
 <span id="L174" class="LineNr">174 </span>    <span class="Normal">default</span>:
 <span id="L175" class="LineNr">175 </span>      <span class="Identifier">break</span><span class="Delimiter">;</span>