lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lynx-dev lynx2.8.1pre.11


From: Leonid Pauzner
Subject: Re: lynx-dev lynx2.8.1pre.11
Date: Wed, 21 Oct 1998 11:30:11 +0400 (MSD)

Before the release I want to see "persistent_cookies"
and "default DTD" (2.7.2 compatible or not) configurable from lynx.cfg.

Here a cosmetic changes:


diff -u old/lymainlo.c ./lymainlo.c
--- old/lymainlo.c      Thu Oct 15 18:23:46 1998
+++ ./lymainlo.c        Tue Oct 20 21:08:48 1998
@@ -3849,7 +3849,7 @@
                 */
                HTuncache_current_document();
            }
-#endif /* NO_OPTION_FORMS */
+#endif /* !NO_OPTION_FORMS */
            break;

        case LYK_INDEX_SEARCH: /* search for a user string */
diff -u old/lyoption.c ./lyoption.c
--- old/lyoption.c      Sun Oct 18 14:30:38 1998
+++ ./lyoption.c        Tue Oct 20 22:50:40 1998
@@ -3400,10 +3400,11 @@
  * pointer.  MRC
  *
  * By changing the certain options value (like preferred language or
- * fake browser name) we need to inform the remote server and reload (uncache)
- * the document which was active just before the Options menu was invoked.
- * Another values (like display_char_set or assume_char_set) used by lynx
- * initial rendering stages and can be changed only after reloading :-(
+ * fake browser name) we need to inform the remote server and reload
+ * (uncache on a proxy) the document which was active just before
+ * the Options menu was invoked.  Another values (like display_char_set
+ * or assume_char_set) used by lynx initial rendering stages
+ * and can only be changed after reloading :-(
  * So we introduce boolean flag 'need_reload' (currently dummy).
  *
  * Options are processed in order according to gen_options(), we should not
@@ -3612,21 +3613,12 @@

        /* Display Character Set: SELECT */
        if (!strcmp(data[i].tag, display_char_set_string)) {
-           int newval;
-
-           newval = atoi(data[i].value);
-           if (newval != current_char_set) {
-               current_char_set = newval;
-           }
+           current_char_set = atoi(data[i].value);
        }

        /* Raw Mode: ON/OFF */
        if (!strcmp(data[i].tag, raw_mode_string)) {
-           BOOLEAN newmode = GetOptValues(bool_values, data[i].value);
-
-           if (newmode != LYRawMode) {
-               LYRawMode = newmode;
-           }
+           LYRawMode = GetOptValues(bool_values, data[i].value);
        }

        /*
Only in .: old
diff -u old/option_h.htm ./option_h.htm
--- old/option_h.htm    Sun Oct 18 14:32:22 1998
+++ ./option_h.htm      Tue Oct 20 21:08:04 1998
@@ -159,7 +159,7 @@

 <H1><A NAME="VB">Verbose Images</A></H1>

-Controls whether or not Lynx replaces the [LINK], INLINE] and [IMAGE] comments
+Controls whether or not Lynx replaces the [LINK], [INLINE] and [IMAGE] comments
 (for images without ALT) with filenames of these images.  This is extremely
 useful because now we can determine immediately which images are decorations
 (button.gif, line.gif) and which are important.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]