diff options
| author | Dan Nicolaescu | 2010-07-08 14:25:08 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-08 14:25:08 -0700 |
| commit | 5842a27bbfb7efa6872824e501bc7ec98b631553 (patch) | |
| tree | d173899af9cbed9d90d94cfc710e6ecc06dd1f6b /src/callproc.c | |
| parent | 71c44c04bb996abe77db8efd88255fde06532b10 (diff) | |
| download | emacs-5842a27bbfb7efa6872824e501bc7ec98b631553.tar.gz emacs-5842a27bbfb7efa6872824e501bc7ec98b631553.zip | |
Convert DEFUNs to standard C.
* src/alloc.c: Convert DEFUNs to standard C.
* src/buffer.c:
* src/bytecode.c:
* src/callint.c:
* src/callproc.c:
* src/casefiddle.c:
* src/casetab.c:
* src/category.c:
* src/character.c:
* src/charset.c:
* src/chartab.c:
* src/cmds.c:
* src/coding.c:
* src/composite.c:
* src/data.c:
* src/dbusbind.c:
* src/dired.c:
* src/dispnew.c:
* src/doc.c:
* src/dosfns.c:
* src/editfns.c:
* src/emacs.c:
* src/eval.c:
* src/fileio.c:
* src/filelock.c:
* src/floatfns.c:
* src/fns.c:
* src/font.c:
* src/fontset.c:
* src/frame.c:
* src/fringe.c:
* src/image.c:
* src/indent.c:
* src/insdel.c:
* src/keyboard.c:
* src/keymap.c:
* src/lread.c:
* src/macros.c:
* src/marker.c:
* src/menu.c:
* src/minibuf.c:
* src/msdos.c:
* src/nsfns.m:
* src/nsmenu.m:
* src/nsselect.m:
* src/print.c:
* src/process.c:
* src/search.c:
* src/sound.c:
* src/syntax.c:
* src/term.c:
* src/terminal.c:
* src/textprop.c:
* src/undo.c:
* src/w16select.c:
* src/w32console.c:
* src/w32fns.c:
* src/w32font.c:
* src/w32menu.c:
* src/w32proc.c:
* src/w32select.c:
* src/window.c:
* src/xdisp.c:
* src/xfaces.c:
* src/xfns.c:
* src/xmenu.c:
* src/xselect.c:
* src/xsettings.c:
* src/xsmfns.c: Likewise.
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/callproc.c b/src/callproc.c index 733cdee3499..674243f50de 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -215,9 +215,7 @@ and returns a numeric exit status or a signal description string. | |||
| 215 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. | 215 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. |
| 216 | 216 | ||
| 217 | usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) | 217 | usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) |
| 218 | (nargs, args) | 218 | (int nargs, register Lisp_Object *args) |
| 219 | int nargs; | ||
| 220 | register Lisp_Object *args; | ||
| 221 | { | 219 | { |
| 222 | Lisp_Object infile, buffer, current_dir, path; | 220 | Lisp_Object infile, buffer, current_dir, path; |
| 223 | int display_p; | 221 | int display_p; |
| @@ -877,9 +875,7 @@ and returns a numeric exit status or a signal description string. | |||
| 877 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. | 875 | If you quit, the process is killed with SIGINT, or SIGKILL if you quit again. |
| 878 | 876 | ||
| 879 | usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */) | 877 | usage: (call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS) */) |
| 880 | (nargs, args) | 878 | (int nargs, register Lisp_Object *args) |
| 881 | int nargs; | ||
| 882 | register Lisp_Object *args; | ||
| 883 | { | 879 | { |
| 884 | struct gcpro gcpro1; | 880 | struct gcpro gcpro1; |
| 885 | Lisp_Object filename_string; | 881 | Lisp_Object filename_string; |
| @@ -1383,8 +1379,7 @@ This function searches `process-environment' for VARIABLE. | |||
| 1383 | If optional parameter ENV is a list, then search this list instead of | 1379 | If optional parameter ENV is a list, then search this list instead of |
| 1384 | `process-environment', and return t when encountering a negative entry | 1380 | `process-environment', and return t when encountering a negative entry |
| 1385 | \(an entry for a variable with no value). */) | 1381 | \(an entry for a variable with no value). */) |
| 1386 | (variable, env) | 1382 | (Lisp_Object variable, Lisp_Object env) |
| 1387 | Lisp_Object variable, env; | ||
| 1388 | { | 1383 | { |
| 1389 | char *value; | 1384 | char *value; |
| 1390 | int valuelen; | 1385 | int valuelen; |