mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
(image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: New variables.
[TARGET_API_MAC_CARBON] (Fx_file_dialog): Don't allow multiple file selection.
This commit is contained in:
parent
fccb803e67
commit
3da64ce8fc
@ -94,6 +94,11 @@ Lisp_Object Qcancel_timer;
|
|||||||
|
|
||||||
extern Lisp_Object Vwindow_system_version;
|
extern Lisp_Object Vwindow_system_version;
|
||||||
|
|
||||||
|
#if GLYPH_DEBUG
|
||||||
|
int image_cache_refcount, dpyinfo_refcount;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if 0 /* Use xstricmp instead. */
|
#if 0 /* Use xstricmp instead. */
|
||||||
/* compare two strings ignoring case */
|
/* compare two strings ignoring case */
|
||||||
|
|
||||||
@ -4145,6 +4150,7 @@ If ONLY-DIR-P is non-nil, the user can only select directories. */)
|
|||||||
options.optionFlags = kNavDefaultNavDlogOptions;
|
options.optionFlags = kNavDefaultNavDlogOptions;
|
||||||
options.optionFlags |= kNavAllFilesInPopup; /* All files allowed */
|
options.optionFlags |= kNavAllFilesInPopup; /* All files allowed */
|
||||||
options.optionFlags |= kNavSelectAllReadableItem;
|
options.optionFlags |= kNavSelectAllReadableItem;
|
||||||
|
options.optionFlags &= ~kNavAllowMultipleFiles;
|
||||||
if (!NILP(prompt))
|
if (!NILP(prompt))
|
||||||
{
|
{
|
||||||
message = cfstring_create_with_string (prompt);
|
message = cfstring_create_with_string (prompt);
|
||||||
|
Loading…
Reference in New Issue
Block a user