• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/src/

Lines Matching +defs:file +defs:tail

5 This file is part of GNU Emacs.
18 along with GNU Emacs; see the file COPYING. If not, write to
153 /* Non-zero means prompt with the old GTK file selection dialog. */
157 /* If non-zero, by default show hidden files in the GTK file chooser. */
161 /* If non-zero, don't show additional help text in the GTK file chooser. */
298 Lisp_Object tail, frame;
303 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
305 frame = XCAR (tail);
348 Lisp_Object tail, frame;
355 for (tail = Vframe_list; GC_CONSP (tail) && !found; tail = XCDR (tail))
357 frame = XCAR (tail);
404 Lisp_Object tail, frame;
410 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
412 frame = XCAR (tail);
452 Lisp_Object tail, frame;
458 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
460 frame = XCAR (tail);
499 Lisp_Object tail, frame;
505 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
507 frame = XCAR (tail);
795 xg_set_icon (f, file)
797 Lisp_Object file;
802 found = x_find_image_file (file);
4174 Lisp_Object tail, result;
4177 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
4178 result = Fcons (XCAR (XCAR (tail)), result);
5342 doc: /* Return t if the old Gtk+ file selection dialog is used. */)
5360 /* Callback for "OK" and "Cancel" on file selection dialog. */
5373 /* Callback for unmapping a file selection dialog. This is used to
5405 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5406 doc: /* Read file name, prompting with PROMPT in directory DIR.
5407 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5408 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5415 Lisp_Object file = Qnil;
5427 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5472 /* If MUSTMATCH is non-nil, disable the file entry field of the
5473 dialog, so that the user must select a file from the files list
5475 the result file name, then. */
5546 file = build_string (data);
5550 file = Qnil;
5556 if (NILP (file))
5559 decoded_file = DECODE_FILE (file);
5577 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5578 doc: /* Read file name, prompting with PROMPT in directory DIR.
5579 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5580 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5588 Lisp_Object file = Qnil;
5596 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5621 file = build_string (fn);
5629 if (NILP (file))
5632 decoded_file = DECODE_FILE (file);
5717 the PS file generated by `xkbprint -label name
5792 /* The section below is built by the lisp expression at the top of the file,
5896 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog,
5897 doc: /* *Non-nil means prompt with the old GTK file selection dialog.
5898 If nil or if the file selection dialog is not available, the new GTK file
5899 chooser is used instead. To turn off all file dialogs set the
5900 variable `use-file-dialog'. */);
5904 doc: /* *If non-nil, the GTK file chooser will by default show hidden files.
5905 Note that this is just the default, there is a toggle button on the file
5909 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text,
5910 doc: /* *If non-nil, the GTK file chooser will show additional help text.
5911 If more space for files in the file chooser dialog is wanted, set this to nil