comparison src/process.c @ 103972:2e99121a6895

(Fset_process_query_on_exit_flag): Mention killing a buffer in docstring.
author Juri Linkov <juri@jurta.org>
date Sat, 18 Jul 2009 21:06:45 +0000
parents 444861df76cd
children a577041a0370
comparison
equal deleted inserted replaced
103971:bb9b3a319d64 103972:2e99121a6895
1131 DEFUN ("set-process-query-on-exit-flag", 1131 DEFUN ("set-process-query-on-exit-flag",
1132 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag, 1132 Fset_process_query_on_exit_flag, Sset_process_query_on_exit_flag,
1133 2, 2, 0, 1133 2, 2, 0,
1134 doc: /* Specify if query is needed for PROCESS when Emacs is exited. 1134 doc: /* Specify if query is needed for PROCESS when Emacs is exited.
1135 If the second argument FLAG is non-nil, Emacs will query the user before 1135 If the second argument FLAG is non-nil, Emacs will query the user before
1136 exiting if PROCESS is running. */) 1136 exiting or killing a buffer if PROCESS is running. */)
1137 (process, flag) 1137 (process, flag)
1138 register Lisp_Object process, flag; 1138 register Lisp_Object process, flag;
1139 { 1139 {
1140 CHECK_PROCESS (process); 1140 CHECK_PROCESS (process);
1141 XPROCESS (process)->kill_without_query = NILP (flag); 1141 XPROCESS (process)->kill_without_query = NILP (flag);