Thu Nov 11 18:25:07 PST 1999 Michael Jennings <mej@eterm.org>

The man page should now be up-to-date for Eterm 0.9.  Please check it
	to make sure. :-)  I also fixed a few minor nits here.


SVN revision: 1259
This commit is contained in:
Michael Jennings 1999-11-12 02:12:20 +00:00
parent 1848961d4c
commit 9cc86a983b
4 changed files with 571 additions and 309 deletions

View File

@ -2756,3 +2756,9 @@ Mon Nov 8 20:17:50 PST 1999 Michael Jennings <mej@eterm.org>
user.cfg files. user.cfg files.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Thu Nov 11 18:25:07 PST 1999 Michael Jennings <mej@eterm.org>
The man page should now be up-to-date for Eterm 0.9. Please check it
to make sure. :-) I also fixed a few minor nits here.
-------------------------------------------------------------------------------

File diff suppressed because it is too large Load Diff

View File

@ -309,7 +309,7 @@ static const struct {
OPT_LONG("colorBD", "bold color", &rs_color[colorBD]), OPT_LONG("colorBD", "bold color", &rs_color[colorBD]),
OPT_LONG("colorUL", "underline color", &rs_color[colorUL]), OPT_LONG("colorUL", "underline color", &rs_color[colorUL]),
#endif /* NO_BOLDUNDERLINE */ #endif /* NO_BOLDUNDERLINE */
OPT_LONG("menur-color", "menu color", &rs_color[menuColor]), OPT_LONG("menu-color", "menu color", &rs_color[menuColor]),
OPT_LONG("menu-text-color", "menu text color", &rs_color[menuTextColor]), OPT_LONG("menu-text-color", "menu text color", &rs_color[menuTextColor]),
OPT_STR('S', "scrollbar-color", "scrollbar color", &rs_color[scrollColor]), OPT_STR('S', "scrollbar-color", "scrollbar color", &rs_color[scrollColor]),
OPT_LONG("unfocused-menu-color", "unfocused menu color", &rs_color[unfocusedMenuColor]), OPT_LONG("unfocused-menu-color", "unfocused menu color", &rs_color[unfocusedMenuColor]),

View File

@ -1734,7 +1734,7 @@ xterm_seq(int op, const char *str)
viewport_pixmap = None; /* Force the re-read */ viewport_pixmap = None; /* Force the re-read */
} }
if (!strcasecmp(color, "image")) { if (!strcasecmp(color, "image")) {
imlib_t *iml = images[image_bg].current->iml; imlib_t *iml = images[which].current->iml;
if (iml->mod == NULL) { if (iml->mod == NULL) {
iml->mod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier)); iml->mod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier));
@ -1749,7 +1749,7 @@ xterm_seq(int op, const char *str)
} }
} else if (!strcasecmp(color, "red")) { } else if (!strcasecmp(color, "red")) {
imlib_t *iml = images[image_bg].current->iml; imlib_t *iml = images[which].current->iml;
if (iml->rmod == NULL) { if (iml->rmod == NULL) {
iml->rmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier)); iml->rmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier));
@ -1764,7 +1764,7 @@ xterm_seq(int op, const char *str)
} }
} else if (!strcasecmp(color, "green")) { } else if (!strcasecmp(color, "green")) {
imlib_t *iml = images[image_bg].current->iml; imlib_t *iml = images[which].current->iml;
if (iml->gmod == NULL) { if (iml->gmod == NULL) {
iml->gmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier)); iml->gmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier));
@ -1779,7 +1779,7 @@ xterm_seq(int op, const char *str)
} }
} else if (!strcasecmp(color, "blue")) { } else if (!strcasecmp(color, "blue")) {
imlib_t *iml = images[image_bg].current->iml; imlib_t *iml = images[which].current->iml;
if (iml->bmod == NULL) { if (iml->bmod == NULL) {
iml->bmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier)); iml->bmod = (ImlibColorModifier *) MALLOC(sizeof(ImlibColorModifier));