Mercurial > emacs
annotate lib-src/pop.h @ 83537:c19f348befac
Fix F10 behaviour. (Reported by Bernard Adrian.)
* src/xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]:
Rename from Fmenu_bar_open.
(syms_of_xmenu): Update defsubr.
* lisp/menu-bar.el (menu-bar-open): New function.
Bind it to f10.
* lisp/term/x-win.el: Don't bind f10.
* lisp/tmm.el: Remove autoload binding for f10.
* lisp/ldefs-boot.el: Regenerate.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-577
| author | Karoly Lorentey <lorentey@elte.hu> |
|---|---|
| date | Sat, 29 Jul 2006 20:57:26 +0000 |
| parents | 3661e9b3c48f |
| children | 6d19c76d81c5 c5406394f567 |
| rev | line source |
|---|---|
| 9158 | 1 /* pop.h: Header file for the "pop.c" client POP3 protocol. |
|
64769
6358e3c6075c
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64083
diff
changeset
|
2 Copyright (C) 1991, 1993, 2002, 2003, 2004, |
|
68647
3661e9b3c48f
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64769
diff
changeset
|
3 2005, 2006 Free Software Foundation, Inc. |
| 9158 | 4 Written by Jonathan Kamens, jik@security.ov.com. |
| 5 | |
| 6 This file is part of GNU Emacs. | |
| 7 | |
| 8 GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 it under the terms of the GNU General Public License as published by | |
| 10 the Free Software Foundation; either version 2, or (at your option) | |
| 11 any later version. | |
| 12 | |
| 13 GNU Emacs is distributed in the hope that it will be useful, | |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 GNU General Public License for more details. | |
| 17 | |
| 18 You should have received a copy of the GNU General Public License | |
| 19 along with GNU Emacs; see the file COPYING. If not, write to | |
| 64083 | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 Boston, MA 02110-1301, USA. */ | |
| 9158 | 22 |
| 23 #include <stdio.h> | |
| 24 | |
| 25 #define GETLINE_MIN 1024 /* the getline buffer starts out this */ | |
| 26 /* size */ | |
| 27 #define GETLINE_INCR 1024 /* the getline buffer is grown by this */ | |
| 28 /* size when it needs to grow */ | |
| 29 | |
| 30 extern char pop_error[]; | |
| 31 extern int pop_debug; | |
| 32 | |
| 33 struct _popserver | |
| 34 { | |
| 35 int file, data; | |
| 36 char *buffer; | |
| 37 int buffer_size, buffer_index; | |
| 38 int in_multi; | |
|
15103
00d52ba071ea
(struct _popserver): New field trash_started.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
39 int trash_started; |
| 9158 | 40 }; |
| 41 | |
| 42 typedef struct _popserver *popserver; | |
| 43 | |
| 44 /* | |
| 45 * Valid flags for the pop_open function. | |
| 46 */ | |
| 47 | |
| 48 #define POP_NO_KERBEROS (1<<0) | |
| 49 #define POP_NO_HESIOD (1<<1) | |
| 50 #define POP_NO_GETPASS (1<<2) | |
| 51 | |
| 52 #ifdef __STDC__ | |
| 53 #define _ARGS(a) a | |
| 54 #else | |
| 55 #define _ARGS(a) () | |
| 56 #endif | |
| 57 | |
| 58 extern popserver pop_open _ARGS((char *host, char *username, char *password, | |
| 59 int flags)); | |
| 60 extern int pop_stat _ARGS((popserver server, int *count, int *size)); | |
| 61 extern int pop_list _ARGS((popserver server, int message, int **IDs, | |
| 62 int **size)); | |
|
20418
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
15103
diff
changeset
|
63 extern int pop_retrieve _ARGS((popserver server, int message, int markfrom, |
|
7e1538a45702
Allow messages retrieved from the POP
Karl Heuer <kwzh@gnu.org>
parents:
15103
diff
changeset
|
64 char **)); |
| 9158 | 65 extern int pop_retrieve_first _ARGS((popserver server, int message, |
| 66 char **response)); | |
| 67 extern int pop_retrieve_next _ARGS((popserver server, char **line)); | |
| 68 extern int pop_retrieve_flush _ARGS((popserver server)); | |
| 69 extern int pop_top_first _ARGS((popserver server, int message, int lines, | |
| 70 char **response)); | |
| 71 extern int pop_top_next _ARGS((popserver server, char **line)); | |
| 72 extern int pop_top_flush _ARGS((popserver server)); | |
| 73 extern int pop_multi_first _ARGS((popserver server, char *command, | |
| 74 char **response)); | |
| 75 extern int pop_multi_next _ARGS((popserver server, char **line)); | |
| 76 extern int pop_multi_flush _ARGS((popserver server)); | |
| 77 extern int pop_delete _ARGS((popserver server, int message)); | |
| 78 extern int pop_noop _ARGS((popserver server)); | |
| 79 extern int pop_last _ARGS((popserver server)); | |
| 80 extern int pop_reset _ARGS((popserver server)); | |
| 81 extern int pop_quit _ARGS((popserver server)); | |
| 82 extern void pop_close _ARGS((popserver)); | |
| 83 | |
| 84 #undef _ARGS | |
| 52401 | 85 |
| 86 /* arch-tag: 76cc5f58-8e86-48fa-bc72-a7c6cb1c4f1c | |
| 87 (do not change this comment) */ |
