]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_ntproc): staticpro Qhigh, Qlow,
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Jul 2005 11:25:43 +0000 (11:25 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Jul 2005 11:25:43 +0000 (11:25 +0000)
Vw32_valid_locale_ids, and Vw32_valid_codepages.

src/w32proc.c

index 0e3f8f2fd4793c80a5e1243a8b5912232f74a428..7e344985f4e5f0ef1b0c192bea0e1a971c76b9c7 100644 (file)
@@ -2146,6 +2146,8 @@ syms_of_ntproc ()
 {
   Qhigh = intern ("high");
   Qlow = intern ("low");
+  staticpro (&Qhigh);
+  staticpro (&Qlow);
 
 #ifdef HAVE_SOCKETS
   defsubr (&Sw32_has_winsock);
@@ -2241,6 +2243,9 @@ the truename of a file can be slow.  */);
 Note that this option is only useful for files on NTFS volumes, where hard links
 are supported.  Moreover, it slows down `file-attributes' noticeably.  */);
   Vw32_get_true_file_attributes = Qt;
+
+  staticpro (&Vw32_valid_locale_ids);
+  staticpro (&Vw32_valid_codepages);
 }
 /* end of ntproc.c */