aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index 0e3f8f2fd47..628a763c675 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -1,5 +1,6 @@
1/* Process support for GNU Emacs on the Microsoft W32 API. 1/* Process support for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1992, 95, 99, 2000, 01, 04 Free Software Foundation, Inc. 2 Copyright (C) 1992, 1995, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
@@ -2146,6 +2147,8 @@ syms_of_ntproc ()
2146{ 2147{
2147 Qhigh = intern ("high"); 2148 Qhigh = intern ("high");
2148 Qlow = intern ("low"); 2149 Qlow = intern ("low");
2150 staticpro (&Qhigh);
2151 staticpro (&Qlow);
2149 2152
2150#ifdef HAVE_SOCKETS 2153#ifdef HAVE_SOCKETS
2151 defsubr (&Sw32_has_winsock); 2154 defsubr (&Sw32_has_winsock);
@@ -2241,6 +2244,9 @@ the truename of a file can be slow. */);
2241Note that this option is only useful for files on NTFS volumes, where hard links 2244Note that this option is only useful for files on NTFS volumes, where hard links
2242are supported. Moreover, it slows down `file-attributes' noticeably. */); 2245are supported. Moreover, it slows down `file-attributes' noticeably. */);
2243 Vw32_get_true_file_attributes = Qt; 2246 Vw32_get_true_file_attributes = Qt;
2247
2248 staticpro (&Vw32_valid_locale_ids);
2249 staticpro (&Vw32_valid_codepages);
2244} 2250}
2245/* end of ntproc.c */ 2251/* end of ntproc.c */
2246 2252