about summary refs log tree commit diff stats
path: root/html/311decimal-int.subx.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-06-24 21:44:18 -0700
committerKartik Agaram <vc@akkartik.com>2021-06-24 21:46:45 -0700
commitec32c11d3bde6772ddd250d3b217e0541409e0ce (patch)
treeb6a6838412dc0b81eec92842753aef415b1e94af /html/311decimal-int.subx.html
parent296a5a5f12080384e813df5594339298f6f1fe8e (diff)
downloadmu-ec32c11d3bde6772ddd250d3b217e0541409e0ce.tar.gz
.
Switch html rendering to a white background.
Diffstat (limited to 'html/311decimal-int.subx.html')
-rw-r--r--html/311decimal-int.subx.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/311decimal-int.subx.html b/html/311decimal-int.subx.html
index 36596a40..6c989f2b 100644
--- a/html/311decimal-int.subx.html
+++ b/html/311decimal-int.subx.html
@@ -7,11 +7,11 @@
 <meta name="plugin-version" content="vim8.1_v1">
 <meta name="syntax" content="none">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
-<meta name="colorscheme" content="minimal-dark">
+<meta name="colorscheme" content="minimal-light">
 <style type="text/css">
 <!--
-pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #a8a8a8; }
-body { font-size:12pt; font-family: monospace; color: #000000; background-color: #a8a8a8; }
+pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #eeeeee; }
+body { font-size:12pt; font-family: monospace; color: #000000; background-color: #eeeeee; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
 .SpecialChar { color: #d70000; }
' href='#n22'>22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41


                        

                    









                                                        






                        



                  
                                     
                                            


                                                                 









                                              
#if !defined(_LYHASH_H_)
#define _LYHASH_H_ 1

#include <HTUtils.h>

struct _hashbucket {
	char *name; /* name of this item */
	int	code; /* code of this item */
	int color; /* color highlighting to be done */
	int mono; /* mono highlighting to be done */
	int cattr; /* attributes to go with the color */
	struct _hashbucket *next; /* next item */
};

typedef struct _hashbucket bucket;

#if !defined(CSHASHSIZE)
#ifdef NOT_USED	
#define CSHASHSIZE 32768
#else
#define CSHASHSIZE 8193
#endif
#endif

#define NOSTYLE -1

extern bucket hashStyles[CSHASHSIZE];
extern int hash_code PARAMS((char* string));
#ifdef NOT_USED
extern int hash_table[CSHASHSIZE]; /* 32K should be big enough */
#endif

extern int	s_alink, s_a, s_status,
		s_label, s_value, s_high,
		s_normal, s_alert, s_title;
#define CACHEW 128
#define CACHEH 64

extern unsigned cached_styles[CACHEH][CACHEW];

#endif /* _LYHASH_H_ */