Mercurial > hg > xemacs-beta
comparison src/specifier.c @ 1015:3d3204656cb4
[xemacs-hg @ 2002-09-24 14:59:22 by michaels]
2002-09-22 Mike Sperber <mike@xemacs.org>
* specifier.c (specifier_add_spec): Don't do anything if NILP
(inst_list)---otherwise, assertions in the rest of the specifier
code get violated.
2002-09-20 Mike Sperber <mike@xemacs.org>
(This partially gets back my patch from 2002-07-20 without the
bug.)
* process-unix.c (child_setup): Remove Ben's comment noting
confusion over the file descriptors >= 3: close_process_descs()
doesn't close all. Fix fd range to go up to MAXDESC-1 instead
of 64.
(unix_create_process): Call begin_dont_check_for_quit to inhibit
unwanted interaction (and thus breaking of X event synchronicity)
in the child.
author | michaels |
---|---|
date | Tue, 24 Sep 2002 14:59:25 +0000 |
parents | c925bacdda60 |
children | e22b0213b713 |
comparison
equal
deleted
inserted
replaced
1014:deaf6c4f5a1c | 1015:3d3204656cb4 |
---|---|
1747 Lisp_Specifier *sp = XSPECIFIER (specifier); | 1747 Lisp_Specifier *sp = XSPECIFIER (specifier); |
1748 enum spec_locale_type type = locale_type_from_locale (locale); | 1748 enum spec_locale_type type = locale_type_from_locale (locale); |
1749 Lisp_Object *orig_inst_list, tem; | 1749 Lisp_Object *orig_inst_list, tem; |
1750 Lisp_Object list_to_build_up = Qnil; | 1750 Lisp_Object list_to_build_up = Qnil; |
1751 struct gcpro gcpro1; | 1751 struct gcpro gcpro1; |
1752 | |
1753 if (NILP (inst_list)) | |
1754 return; | |
1752 | 1755 |
1753 GCPRO1 (list_to_build_up); | 1756 GCPRO1 (list_to_build_up); |
1754 list_to_build_up = build_up_processed_list (specifier, locale, inst_list); | 1757 list_to_build_up = build_up_processed_list (specifier, locale, inst_list); |
1755 /* Now handle REMOVE_LOCALE_TYPE and REMOVE_ALL. These are the | 1758 /* Now handle REMOVE_LOCALE_TYPE and REMOVE_ALL. These are the |
1756 add-meth types that affect locales other than this one. */ | 1759 add-meth types that affect locales other than this one. */ |