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/fileio.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/fileio.c')
| -rw-r--r-- | src/fileio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fileio.c b/src/fileio.c index 8c2ee45c073..af477792ec8 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -240,9 +240,9 @@ Lisp_Object Qfile_name_history; | |||
| 240 | 240 | ||
| 241 | Lisp_Object Qcar_less_than_car; | 241 | Lisp_Object Qcar_less_than_car; |
| 242 | 242 | ||
| 243 | static int a_write P_ ((int, Lisp_Object, int, int, | 243 | static int a_write (int, Lisp_Object, int, int, |
| 244 | Lisp_Object *, struct coding_system *)); | 244 | Lisp_Object *, struct coding_system *); |
| 245 | static int e_write P_ ((int, Lisp_Object, int, int, struct coding_system *)); | 245 | static int e_write (int, Lisp_Object, int, int, struct coding_system *); |
| 246 | 246 | ||
| 247 | 247 | ||
| 248 | void | 248 | void |
| @@ -3101,7 +3101,7 @@ The value is an integer. */) | |||
| 3101 | return value; | 3101 | return value; |
| 3102 | } | 3102 | } |
| 3103 | 3103 | ||
| 3104 | extern int lisp_time_argument P_ ((Lisp_Object, time_t *, int *)); | 3104 | extern int lisp_time_argument (Lisp_Object, time_t *, int *); |
| 3105 | 3105 | ||
| 3106 | DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0, | 3106 | DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0, |
| 3107 | doc: /* Set times of file FILENAME to TIME. | 3107 | doc: /* Set times of file FILENAME to TIME. |
| @@ -4445,7 +4445,7 @@ variable `last-coding-system-used' to the coding system actually used. */) | |||
| 4445 | RETURN_UNGCPRO (unbind_to (count, val)); | 4445 | RETURN_UNGCPRO (unbind_to (count, val)); |
| 4446 | } | 4446 | } |
| 4447 | 4447 | ||
| 4448 | static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object)); | 4448 | static Lisp_Object build_annotations (Lisp_Object, Lisp_Object); |
| 4449 | 4449 | ||
| 4450 | static Lisp_Object | 4450 | static Lisp_Object |
| 4451 | build_annotations_unwind (arg) | 4451 | build_annotations_unwind (arg) |