diff options
| author | Eli Zaretskii | 2005-07-16 11:25:43 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-07-16 11:25:43 +0000 |
| commit | af621bc3f0794b78dc2f272ebd9c8c44e3b46a19 (patch) | |
| tree | bd974a0e0e86b4aeef739a707a75399a046c8c26 /src | |
| parent | 9e6bb19f87a5cf37b486da28102ba876fd576fa5 (diff) | |
| download | emacs-af621bc3f0794b78dc2f272ebd9c8c44e3b46a19.tar.gz emacs-af621bc3f0794b78dc2f272ebd9c8c44e3b46a19.zip | |
(syms_of_ntproc): staticpro Qhigh, Qlow,
Vw32_valid_locale_ids, and Vw32_valid_codepages.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32proc.c | 5 |
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 () | |||
| 2146 | { | 2146 | { |
| 2147 | Qhigh = intern ("high"); | 2147 | Qhigh = intern ("high"); |
| 2148 | Qlow = intern ("low"); | 2148 | Qlow = intern ("low"); |
| 2149 | staticpro (&Qhigh); | ||
| 2150 | staticpro (&Qlow); | ||
| 2149 | 2151 | ||
| 2150 | #ifdef HAVE_SOCKETS | 2152 | #ifdef HAVE_SOCKETS |
| 2151 | defsubr (&Sw32_has_winsock); | 2153 | defsubr (&Sw32_has_winsock); |
| @@ -2241,6 +2243,9 @@ the truename of a file can be slow. */); | |||
| 2241 | Note that this option is only useful for files on NTFS volumes, where hard links | 2243 | Note that this option is only useful for files on NTFS volumes, where hard links |
| 2242 | are supported. Moreover, it slows down `file-attributes' noticeably. */); | 2244 | are supported. Moreover, it slows down `file-attributes' noticeably. */); |
| 2243 | Vw32_get_true_file_attributes = Qt; | 2245 | Vw32_get_true_file_attributes = Qt; |
| 2246 | |||
| 2247 | staticpro (&Vw32_valid_locale_ids); | ||
| 2248 | staticpro (&Vw32_valid_codepages); | ||
| 2244 | } | 2249 | } |
| 2245 | /* end of ntproc.c */ | 2250 | /* end of ntproc.c */ |
| 2246 | 2251 | ||