summaryrefslogtreecommitdiff
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2005-07-16 11:25:43 +0000
committerEli Zaretskii <eliz@gnu.org>2005-07-16 11:25:43 +0000
commitaf621bc3f0794b78dc2f272ebd9c8c44e3b46a19 (patch)
treebd974a0e0e86b4aeef739a707a75399a046c8c26 /src/w32proc.c
parent9e6bb19f87a5cf37b486da28102ba876fd576fa5 (diff)
downloademacs-af621bc3f0794b78dc2f272ebd9c8c44e3b46a19.tar.gz
(syms_of_ntproc): staticpro Qhigh, Qlow,
Vw32_valid_locale_ids, and Vw32_valid_codepages.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index 0e3f8f2fd47..7e344985f4e 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -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 */