X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/f49d1f52b2e368ef67dcfececd426de958548f4e..595195a10e5dd568bf249f5fb6778ae3d7037cd5:/lib-src/pop.h diff --git a/lib-src/pop.h b/lib-src/pop.h index 2ba3fab83a..b8c21fcedb 100644 --- a/lib-src/pop.h +++ b/lib-src/pop.h @@ -1,6 +1,5 @@ /* pop.h: Header file for the "pop.c" client POP3 protocol. - Copyright (C) 1991, 1993, 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 1991, 1993, 2001-2016 Free Software Foundation, Inc. Author: Jonathan Kamens @@ -8,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 @@ -28,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; @@ -74,6 +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); - -/* arch-tag: 76cc5f58-8e86-48fa-bc72-a7c6cb1c4f1c - (do not change this comment) */