From 805d58c6aeeeba3e4989c0eed6781b3861e8fae0 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 25 Jan 2018 22:39:31 -0800 Subject: 4199 --- html/subx/001help.cc.html | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) (limited to 'html/subx/001help.cc.html') diff --git a/html/subx/001help.cc.html b/html/subx/001help.cc.html index a96cc59d..b41814f3 100644 --- a/html/subx/001help.cc.html +++ b/html/subx/001help.cc.html @@ -15,18 +15,17 @@ 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; } -.cSpecial { color: #008000; } +.CommentedCode { color: #6c6c6c; } .PreProc { color: #800080; } .LineNr { color: #444444; } +.Constant { color: #00a0a0; } +.Delimiter { color: #800080; } .SalientComment { color: #00ffff; } .Identifier { color: #c0a020; } -.Constant { color: #00a0a0; } .Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; } .Comment { color: #9090ff; } .Comment a { color:#0000ee; text-decoration:underline; } -.Delimiter { color: #800080; } -.Conceal { color: #4e4e4e; } -.CommentedCode { color: #6c6c6c; } +.cSpecial { color: #008000; } --> @@ -69,7 +68,7 @@ if ('onhashchange' in window) { 6 //: this is the functionality later layers will provide 7 // currently no automated tests for commandline arg parsing 8 cerr << "Usage:\n" - 9 ¦ ¦ ¦<< " subx test\n"; + 9 << " subx test\n"; 10 return 0; 11 } 12 @@ -90,7 +89,7 @@ if ('onhashchange' in window) { 27 bool starts_with(const string& s, const string& pat) { 28 string::const_iterator a=s.begin(), b=pat.begin(); 29 for (/*nada*/; a!=s.end() && b!=pat.end(); ++a, ++b) - 30 ¦ if (*a != *b) return false; + 30 if (*a != *b) return false; 31 return b == pat.end(); 32 } 33 @@ -172,20 +171,20 @@ if ('onhashchange' in window) { 109 } 110 void dump_and_exit(int sig, unused siginfo_t* dummy1, unused void* dummy2) { 111 switch (sig) { -112 ¦ case SIGABRT: -113 ¦ ¦ #ifndef __APPLE__ -114 ¦ ¦ ¦ cerr << "SIGABRT: might be an integer overflow if it wasn't an assert() failure\n"; -115 ¦ ¦ ¦ _Exit(1); -116 ¦ ¦ #endif -117 ¦ ¦ break; -118 ¦ case SIGILL: -119 ¦ ¦ #ifdef __APPLE__ -120 ¦ ¦ ¦ cerr << "SIGILL: most likely caused by integer overflow\n"; -121 ¦ ¦ ¦ _Exit(1); -122 ¦ ¦ #endif -123 ¦ ¦ break; -124 ¦ default: -125 ¦ ¦ break; +112 case SIGABRT: +113 #ifndef __APPLE__ +114 cerr << "SIGABRT: might be an integer overflow if it wasn't an assert() failure\n"; +115 _Exit(1); +116 #endif +117 break; +118 case SIGILL: +119 #ifdef __APPLE__ +120 cerr << "SIGILL: most likely caused by integer overflow\n"; +121 _Exit(1); +122 #endif +123 break; +124 default: +125 break; 126 } 127 } 128 :(before "End Includes") -- cgit 1.4.1-2-gfad0