X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/a64bfdfa5a90731b804c057f2bcc74a8ba02937c..0d7aad1b30de7e9deb8b3c7011d9b679e538371c:/lib-src/pop.h diff --git a/lib-src/pop.h b/lib-src/pop.h index bc079fcc97..b8c21fcedb 100644 --- a/lib-src/pop.h +++ b/lib-src/pop.h @@ -1,5 +1,5 @@ /* pop.h: Header file for the "pop.c" client POP3 protocol. - Copyright (C) 1991, 1993, 2001-2011 Free Software Foundation, Inc. + Copyright (C) 1991, 1993, 2001-2016 Free Software Foundation, Inc. Author: Jonathan Kamens @@ -7,8 +7,8 @@ This file is part of GNU Emacs. GNU Emacs is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version. GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -27,15 +27,15 @@ along with GNU Emacs. If not, see . */ /* size when it needs to grow */ extern char pop_error[]; -extern int pop_debug; +extern bool pop_debug; struct _popserver { int file, data; char *buffer; int buffer_size, buffer_index; - int in_multi; - int trash_started; + bool_bf in_multi : 1; + bool_bf trash_started : 1; }; typedef struct _popserver *popserver; @@ -73,4 +73,3 @@ extern int pop_last (popserver server); extern int pop_reset (popserver server); extern int pop_quit (popserver server); extern void pop_close (popserver); -