aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorTom Tromey2012-07-03 12:24:42 -0600
committerTom Tromey2012-07-03 12:24:42 -0600
commit404dbd373a91c0b994005e88fe703d9144873b27 (patch)
tree758143095cab84ccd7962166584b94787df03267 /src/process.c
parent8e4fd1e172f5fc3daf8219965a588bf0125ba311 (diff)
downloademacs-404dbd373a91c0b994005e88fe703d9144873b27.tar.gz
emacs-404dbd373a91c0b994005e88fe703d9144873b27.zip
Auto-generate EXFUN using make-docfile
src * window.c (Fset_window_margins, Fset_window_fringes) (Fset_window_scroll_bars, Fset_window_vscroll): No longer static. * textprop.c (Fprevious_property_change): No longer static. * syntax.c (Fsyntax_table_p): No longer static. * process.c (Fget_process, Fprocess_datagram_address): No longer static. * keymap.c (Flookup_key, Fcopy_keymap): No longer static. * keyboard.c (Fcommand_execute): No longer static. Remove EXFUN. * insdel.c (Fcombine_after_change_execute): No longer static. * image.c (Finit_image_library): No longer static. * fileio.c (Fmake_symbolic_link): No longer static. * eval.c (Ffetch_bytecode): No longer static. * editfns.c (Fuser_full_name): No longer static. * doc.c: (Fdocumentation_property, Fsnarf_documentation): No longer static. * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer static. * dired.c (Ffile_attributes): No longer static. * composite.c (Fcomposition_get_gstring): No longer static. * callproc.c (Fgetenv_internal): No longer static. * ccl.h: Remove EXFUNs. * buffer.h: Remove EXFUNs. * dispextern.h: Remove EXFUNs. * intervals.h: Remove EXFUNs. * fontset.h: Remove EXFUN. * font.h: Remove EXFUNs. * dosfns.c (system_process_attributes): Remove EXFUN. * keymap.h: Remove EXFUNs. * lisp.h: Remove EXFUNs. * w32term.h: Remove EXFUNs. * window.h: Remove EXFUNs. * xsettings.h: Remove EXFUN. * xterm.h: Remove EXFUN. lib-src * make-docfile.c (enum global_type) <FUNCTION>: New constant. (struct global) <value>: New field. (add_global): Add 'value' argument. (compare_globals): Sort functions at the end. (close_emacs_globals): New function. (write_globals): Handle functions. (scan_c_file): Call add_global for DEFUN.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/process.c b/src/process.c
index fa16c178c16..a251e08a4db 100644
--- a/src/process.c
+++ b/src/process.c
@@ -249,7 +249,6 @@ static int process_output_skip;
249#define process_output_delay_count 0 249#define process_output_delay_count 0
250#endif 250#endif
251 251
252static Lisp_Object Fget_process (Lisp_Object);
253static void create_process (Lisp_Object, char **, Lisp_Object); 252static void create_process (Lisp_Object, char **, Lisp_Object);
254#ifdef SIGIO 253#ifdef SIGIO
255static int keyboard_bit_set (SELECT_TYPE *); 254static int keyboard_bit_set (SELECT_TYPE *);
@@ -1089,10 +1088,6 @@ DEFUN ("process-query-on-exit-flag",
1089 return (XPROCESS (process)->kill_without_query ? Qnil : Qt); 1088 return (XPROCESS (process)->kill_without_query ? Qnil : Qt);
1090} 1089}
1091 1090
1092#ifdef DATAGRAM_SOCKETS
1093static Lisp_Object Fprocess_datagram_address (Lisp_Object);
1094#endif
1095
1096DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, 1091DEFUN ("process-contact", Fprocess_contact, Sprocess_contact,
1097 1, 2, 0, 1092 1, 2, 0,
1098 doc: /* Return the contact info of PROCESS; t for a real child. 1093 doc: /* Return the contact info of PROCESS; t for a real child.