diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2003-06-02 01:32:28 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2003-06-02 01:32:28 -0400 |
commit | 6bbc5d0bfc53e1fbe69f916504c008e1b74b0b19 (patch) | |
tree | feebae850ee453021e05860f09ee7f7f4eac7651 /src/LYStyle.c | |
parent | 03413d1c868839950b21fd0b10fa5f31fff83964 (diff) | |
download | lynx-snapshots-6bbc5d0bfc53e1fbe69f916504c008e1b74b0b19.tar.gz |
snapshot of project "lynx", label v2-8-5dev_16
Diffstat (limited to 'src/LYStyle.c')
-rw-r--r-- | src/LYStyle.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/LYStyle.c b/src/LYStyle.c index b6d71ea2..16ab70d3 100644 --- a/src/LYStyle.c +++ b/src/LYStyle.c @@ -1,6 +1,6 @@ /* character level styles for Lynx * (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-) - * @Id: LYStyle.c 1.51 Wed, 22 Jan 2003 01:43:13 -0800 dickey @ + * @Id: LYStyle.c 1.52 Sun, 01 Jun 2003 18:16:28 -0700 dickey @ */ #include <HTUtils.h> #include <HTML.h> @@ -59,6 +59,13 @@ PUBLIC int s_alert = NOSTYLE; PUBLIC int s_alink = NOSTYLE; PUBLIC int s_curedit = NOSTYLE; PUBLIC int s_forw_backw = NOSTYLE; +PUBLIC int s_hot_paste = NOSTYLE; +PUBLIC int s_menu_active = NOSTYLE; +PUBLIC int s_menu_bg = NOSTYLE; +PUBLIC int s_menu_entry = NOSTYLE; +PUBLIC int s_menu_frame = NOSTYLE; +PUBLIC int s_menu_number = NOSTYLE; +PUBLIC int s_menu_sb = NOSTYLE; PUBLIC int s_normal = NOSTYLE; PUBLIC int s_prompt_edit = NOSTYLE; PUBLIC int s_prompt_edit_arr = NOSTYLE; @@ -67,12 +74,6 @@ PUBLIC int s_prompt_sel = NOSTYLE; PUBLIC int s_status = NOSTYLE; PUBLIC int s_title = NOSTYLE; PUBLIC int s_whereis = NOSTYLE; -PUBLIC int s_menu_frame = NOSTYLE; -PUBLIC int s_menu_bg = NOSTYLE; -PUBLIC int s_menu_number = NOSTYLE; -PUBLIC int s_menu_entry = NOSTYLE; -PUBLIC int s_menu_active = NOSTYLE; -PUBLIC int s_menu_sb = NOSTYLE; #ifdef USE_SCROLLBAR PUBLIC int s_sb_aa = NOSTYLE; @@ -250,6 +251,7 @@ PRIVATE void parse_style ARGS1(char*, param) { "edit.prompt.marked", DSTYLE_ELEMENTS, &s_prompt_sel }, { "edit.prompt", DSTYLE_ELEMENTS, &s_prompt_edit }, { "forwbackw.arrow", DSTYLE_ELEMENTS, &s_forw_backw }, + { "hot.paste", DSTYLE_ELEMENTS, &s_hot_paste }, { "menu.frame", DSTYLE_ELEMENTS, &s_menu_frame }, { "menu.bg", DSTYLE_ELEMENTS, &s_menu_bg }, { "menu.n", DSTYLE_ELEMENTS, &s_menu_number }, |