• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/src/

Lines Matching +defs:operation +defs:prompt

6554      (prompt)
6555 Lisp_Object prompt;
6560 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil,
6570 (prompt, default_coding_system)
6571 Lisp_Object prompt, default_coding_system;
6576 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil,
7207 if the decoding operation is trivial.
7221 if the encoding operation is trivial.
7449 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system,
7451 doc: /* Choose a coding system for an operation based on the target name.
7487 usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */)
7492 Lisp_Object operation, target_idx, target, val;
7497 operation = args[0];
7498 if (!SYMBOLP (operation)
7499 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx)))
7502 error ("Too few arguments for operation: %s",
7503 SDATA (SYMBOL_NAME (operation)));
7507 if (EQ (operation, Qwrite_region)
7513 || (EQ (operation, Qinsert_file_contents) && CONSP (target)
7515 || (EQ (operation, Qopen_network_stream) && INTEGERP (target))))
7520 chain = ((EQ (operation, Qinsert_file_contents)
7521 || EQ (operation, Qwrite_region))
7523 : (EQ (operation, Qopen_network_stream)
7933 If the value is a coding system, it is used for decoding on read operation.
7972 doc: /* Alist to decide a coding system to use for a file I/O operation.
7983 `find-operation-coding-system' was called.
7985 See also the function `find-operation-coding-system'
7990 doc: /* Alist to decide a coding system to use for a process I/O operation.
8001 See also the function `find-operation-coding-system'. */);
8005 doc: /* Alist to decide a coding system to use for a network I/O operation.
8017 See also the function `find-operation-coding-system'. */);
8086 coding system used in each operation can't encode the text.