diff options
| author | Jan D | 2010-07-02 14:19:53 +0200 |
|---|---|---|
| committer | Jan D | 2010-07-02 14:19:53 +0200 |
| commit | f57e2426f0e8a6b251be71b6f62237fd286998ea (patch) | |
| tree | a8db36e415ea69b4196881b44122454317510f46 /src/eval.c | |
| parent | 383e09700c9b3d175c506301d363be4597827db7 (diff) | |
| download | emacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.tar.gz emacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.zip | |
Remove __P and P_ from .c and .m files and definition of P_
* lisp.h:
* atimer.h: Remove define for P_.
* alloc.c: Remove __P and P_ from .c and .m files.
* atimer.c:
* buffer.c:
* callint.c:
* category.c:
* charset.c:
* chartab.c:
* cm.c:
* coding.c:
* composite.c:
* data.c:
* dired.c:
* dispnew.c:
* doc.c:
* editfns.c:
* emacs.c:
* eval.c:
* fileio.c:
* filelock.c:
* fns.c:
* font.c:
* fontset.c:
* frame.c:
* ftfont.c:
* ftxfont.c:
* gmalloc.c:
* gtkutil.c:
* image.c:
* indent.c:
* intervals.c:
* keyboard.c:
* keymap.c:
* lread.c:
* marker.c:
* menu.c:
* minibuf.c:
* print.c:
* process.c:
* scroll.c:
* search.c:
* sound.c:
* strftime.c:
* syntax.c:
* sysdep.c:
* term.c:
* terminal.c:
* textprop.c:
* unexalpha.c:
* w32console.c:
* w32fns.c:
* w32font.c:
* w32menu.c:
* w32term.c:
* w32uniscribe.c:
* window.c:
* xdisp.c:
* xfaces.c:
* xfns.c:
* xfont.c:
* xftfont.c:
* xmenu.c:
* xselect.c:
* xterm.c: Likewise.
* ebrowse.c: Remove P_ and __P.
* etags.c:
* movemail.c:
* pop.c:
* update-game-score.c: Likewise.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/eval.c b/src/eval.c index 199c4705736..239ee40ab95 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -170,8 +170,8 @@ extern Lisp_Object Qrisky_local_variable; | |||
| 170 | 170 | ||
| 171 | extern Lisp_Object Qfunction; | 171 | extern Lisp_Object Qfunction; |
| 172 | 172 | ||
| 173 | static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*)); | 173 | static Lisp_Object funcall_lambda (Lisp_Object, int, Lisp_Object*); |
| 174 | static void unwind_to_catch P_ ((struct catchtag *, Lisp_Object)) NO_RETURN; | 174 | static void unwind_to_catch (struct catchtag *, Lisp_Object) NO_RETURN; |
| 175 | 175 | ||
| 176 | #if __GNUC__ | 176 | #if __GNUC__ |
| 177 | /* "gcc -O3" enables automatic function inlining, which optimizes out | 177 | /* "gcc -O3" enables automatic function inlining, which optimizes out |
| @@ -1660,8 +1660,8 @@ internal_condition_case_n (Lisp_Object (*bfun) (int, Lisp_Object*), | |||
| 1660 | } | 1660 | } |
| 1661 | 1661 | ||
| 1662 | 1662 | ||
| 1663 | static Lisp_Object find_handler_clause P_ ((Lisp_Object, Lisp_Object, | 1663 | static Lisp_Object find_handler_clause (Lisp_Object, Lisp_Object, |
| 1664 | Lisp_Object, Lisp_Object)); | 1664 | Lisp_Object, Lisp_Object); |
| 1665 | 1665 | ||
| 1666 | DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, | 1666 | DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0, |
| 1667 | doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. | 1667 | doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. |
| @@ -2574,8 +2574,8 @@ usage: (apply FUNCTION &rest ARGUMENTS) */) | |||
| 2574 | /* Run hook variables in various ways. */ | 2574 | /* Run hook variables in various ways. */ |
| 2575 | 2575 | ||
| 2576 | enum run_hooks_condition {to_completion, until_success, until_failure}; | 2576 | enum run_hooks_condition {to_completion, until_success, until_failure}; |
| 2577 | static Lisp_Object run_hook_with_args P_ ((int, Lisp_Object *, | 2577 | static Lisp_Object run_hook_with_args (int, Lisp_Object *, |
| 2578 | enum run_hooks_condition)); | 2578 | enum run_hooks_condition); |
| 2579 | 2579 | ||
| 2580 | DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0, | 2580 | DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0, |
| 2581 | doc: /* Run each hook in HOOKS. | 2581 | doc: /* Run each hook in HOOKS. |
| @@ -3424,7 +3424,7 @@ specbind (symbol, value) | |||
| 3424 | 3424 | ||
| 3425 | void | 3425 | void |
| 3426 | record_unwind_protect (function, arg) | 3426 | record_unwind_protect (function, arg) |
| 3427 | Lisp_Object (*function) P_ ((Lisp_Object)); | 3427 | Lisp_Object (*function) (Lisp_Object); |
| 3428 | Lisp_Object arg; | 3428 | Lisp_Object arg; |
| 3429 | { | 3429 | { |
| 3430 | eassert (!handling_signal); | 3430 | eassert (!handling_signal); |