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 /lib-src/pop.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 'lib-src/pop.c')
| -rw-r--r-- | lib-src/pop.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index 64488e7e3ea..974ae784794 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c | |||
| @@ -116,16 +116,16 @@ extern int h_errno; | |||
| 116 | # endif /* __STDC__ */ | 116 | # endif /* __STDC__ */ |
| 117 | #endif /* ! __P */ | 117 | #endif /* ! __P */ |
| 118 | 118 | ||
| 119 | static int socket_connection __P((char *, int)); | 119 | static int socket_connection (char *, int); |
| 120 | static int pop_getline __P((popserver, char **)); | 120 | static int pop_getline (popserver, char **); |
| 121 | static int sendline __P((popserver, char *)); | 121 | static int sendline (popserver, char *); |
| 122 | static int fullwrite __P((int, char *, int)); | 122 | static int fullwrite (int, char *, int); |
| 123 | static int getok __P((popserver)); | 123 | static int getok (popserver); |
| 124 | #if 0 | 124 | #if 0 |
| 125 | static int gettermination __P((popserver)); | 125 | static int gettermination (popserver); |
| 126 | #endif | 126 | #endif |
| 127 | static void pop_trash __P((popserver)); | 127 | static void pop_trash (popserver); |
| 128 | static char *find_crlf __P((char *, int)); | 128 | static char *find_crlf (char *, int); |
| 129 | 129 | ||
| 130 | #define ERROR_MAX 160 /* a pretty arbitrary size, but needs | 130 | #define ERROR_MAX 160 /* a pretty arbitrary size, but needs |
| 131 | to be bigger than the original | 131 | to be bigger than the original |