]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_msdos): Intern background-color and
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Sep 1997 01:27:57 +0000 (01:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Sep 1997 01:27:57 +0000 (01:27 +0000)
foreground-color, and staticpro them.
(IT_set_frame_parameters): Use Qforeground_color and
Qbackground_color.

src/msdos.c

index c3abf07ada2f2345efd3db4628374d33e9fd1bf5..ae9e7edfde8358b72948497d47d9e2db88cad2c6 100644 (file)
@@ -988,7 +988,7 @@ IT_set_frame_parameters (f, alist)
       Lisp_Object prop = parms[i];
       Lisp_Object val  = values[i];
 
-      if (EQ (prop, intern ("foreground-color")))
+      if (EQ (prop, Qforeground_color))
        {
          unsigned long new_color = load_color (f, val);
          if (new_color != ~0)
@@ -999,7 +999,7 @@ IT_set_frame_parameters (f, alist)
                fprintf (termscript, "<FGCOLOR %lu>\n", new_color);
            }
        }
-      else if (EQ (prop, intern ("background-color")))
+      else if (EQ (prop, Qbackground_color))
        {
          unsigned long new_color = load_color (f, val);
          if (new_color != ~0)
@@ -3500,6 +3500,12 @@ syms_of_msdos ()
   DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
     "List of directories to search for bitmap files for X.");
   Vx_bitmap_file_path = decode_env_path ((char *) 0, ".");
+
+  /* The following two are from xfns.c:  */
+  Qbackground_color = intern ("background-color");
+  staticpro (&Qbackground_color);
+  Qforeground_color = intern ("foreground-color");
+  staticpro (&Qforeground_color);
 #endif
 #ifndef subprocesses
   DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,