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/menu.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/menu.c')
| -rw-r--r-- | src/menu.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/menu.c b/src/menu.c index ca00c06a98b..55b1acb3fb9 100644 --- a/src/menu.c +++ b/src/menu.c | |||
| @@ -272,8 +272,8 @@ struct skp | |||
| 272 | int notbuttons; | 272 | int notbuttons; |
| 273 | }; | 273 | }; |
| 274 | 274 | ||
| 275 | static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, | 275 | static void single_menu_item (Lisp_Object, Lisp_Object, Lisp_Object, |
| 276 | void *)); | 276 | void *); |
| 277 | 277 | ||
| 278 | /* This is a recursive subroutine of keymap_panes. | 278 | /* This is a recursive subroutine of keymap_panes. |
| 279 | It handles one keymap, KEYMAP. | 279 | It handles one keymap, KEYMAP. |
| @@ -1164,12 +1164,12 @@ no quit occurs and `x-popup-menu' returns nil. */) | |||
| 1164 | Lisp_Object bar_window; | 1164 | Lisp_Object bar_window; |
| 1165 | enum scroll_bar_part part; | 1165 | enum scroll_bar_part part; |
| 1166 | unsigned long time; | 1166 | unsigned long time; |
| 1167 | void (*mouse_position_hook) P_ ((struct frame **, int, | 1167 | void (*mouse_position_hook) (struct frame **, int, |
| 1168 | Lisp_Object *, | 1168 | Lisp_Object *, |
| 1169 | enum scroll_bar_part *, | 1169 | enum scroll_bar_part *, |
| 1170 | Lisp_Object *, | 1170 | Lisp_Object *, |
| 1171 | Lisp_Object *, | 1171 | Lisp_Object *, |
| 1172 | unsigned long *)) = | 1172 | unsigned long *) = |
| 1173 | FRAME_TERMINAL (new_f)->mouse_position_hook; | 1173 | FRAME_TERMINAL (new_f)->mouse_position_hook; |
| 1174 | 1174 | ||
| 1175 | if (mouse_position_hook) | 1175 | if (mouse_position_hook) |