comparison src/macfns.c @ 90228:fa0da9b57058

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 542-553) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 116-121) - Merge from emacs--cvs-trunk--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Mon, 19 Sep 2005 10:20:33 +0000
parents 2d92f5c9d6ae 18cc1afe504a
children aa89c814f853
comparison
equal deleted inserted replaced
90227:10fe5fadaf89 90228:fa0da9b57058
91 Lisp_Object Qcancel_timer; 91 Lisp_Object Qcancel_timer;
92 92
93 /* In dispnew.c */ 93 /* In dispnew.c */
94 94
95 extern Lisp_Object Vwindow_system_version; 95 extern Lisp_Object Vwindow_system_version;
96
97 #if GLYPH_DEBUG
98 int image_cache_refcount, dpyinfo_refcount;
99 #endif
100
96 101
97 #if 0 /* Use xstricmp instead. */ 102 #if 0 /* Use xstricmp instead. */
98 /* compare two strings ignoring case */ 103 /* compare two strings ignoring case */
99 104
100 static int 105 static int
4143 options.modality = kWindowModalityAppModal; 4148 options.modality = kWindowModalityAppModal;
4144 options.location.h = options.location.v = -1; 4149 options.location.h = options.location.v = -1;
4145 options.optionFlags = kNavDefaultNavDlogOptions; 4150 options.optionFlags = kNavDefaultNavDlogOptions;
4146 options.optionFlags |= kNavAllFilesInPopup; /* All files allowed */ 4151 options.optionFlags |= kNavAllFilesInPopup; /* All files allowed */
4147 options.optionFlags |= kNavSelectAllReadableItem; 4152 options.optionFlags |= kNavSelectAllReadableItem;
4153 options.optionFlags &= ~kNavAllowMultipleFiles;
4148 if (!NILP(prompt)) 4154 if (!NILP(prompt))
4149 { 4155 {
4150 message = cfstring_create_with_string (prompt); 4156 message = cfstring_create_with_string (prompt);
4151 options.message = message; 4157 options.message = message;
4152 } 4158 }