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/data.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/data.c')
| -rw-r--r-- | src/data.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c index 93cc57e9f2c..d44176d9b01 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2057,7 +2057,7 @@ If the current binding is global (the default), the value is nil. */) | |||
| 2057 | /* This code is disabled now that we use the selected frame to return | 2057 | /* This code is disabled now that we use the selected frame to return |
| 2058 | keyboard-local-values. */ | 2058 | keyboard-local-values. */ |
| 2059 | #if 0 | 2059 | #if 0 |
| 2060 | extern struct terminal *get_terminal P_ ((Lisp_Object display, int)); | 2060 | extern struct terminal *get_terminal (Lisp_Object display, int); |
| 2061 | 2061 | ||
| 2062 | DEFUN ("terminal-local-value", Fterminal_local_value, Sterminal_local_value, 2, 2, 0, | 2062 | DEFUN ("terminal-local-value", Fterminal_local_value, Sterminal_local_value, 2, 2, 0, |
| 2063 | doc: /* Return the terminal-local value of SYMBOL on TERMINAL. | 2063 | doc: /* Return the terminal-local value of SYMBOL on TERMINAL. |
| @@ -2605,8 +2605,8 @@ enum arithop | |||
| 2605 | Amin | 2605 | Amin |
| 2606 | }; | 2606 | }; |
| 2607 | 2607 | ||
| 2608 | static Lisp_Object float_arith_driver P_ ((double, int, enum arithop, | 2608 | static Lisp_Object float_arith_driver (double, int, enum arithop, |
| 2609 | int, Lisp_Object *)); | 2609 | int, Lisp_Object *); |
| 2610 | extern Lisp_Object fmod_float (); | 2610 | extern Lisp_Object fmod_float (); |
| 2611 | 2611 | ||
| 2612 | Lisp_Object | 2612 | Lisp_Object |