view nt/inc/langinfo.h @ 110615:84a76c5e1b1c

Merge changes made in Gnus trunk. sieve-manage.el (sieve-manage-default-stream): Make default stream customizable. nnimap.el (nnimap-request-accept-article): Send a "." at the end, which may or may not help. nnimap.el (nnimap-open-connection): Have the `network' nnimap connection use STARTTLS opportunistically. gnus-sum.el (gnus-summary-insert-new-articles): Copy the old-high watermark so that nothing alters it while scanning for new messages. nnimap.el (nnimap-request-accept-article): Remove the "." at the end, since some servers don't like it. nnimap.el (nnimap-open-connection): Forget credentials if the server says the password was wrong. nnimap.el (nnimap-parse-line): Protect against invalid data. gnus-art.el, gnus-sum.el, nnimap.el: Allow setting the partial fetch per server instead of globally. message.el (message-cite-prefix-regexp): Revert last edit. nnmairix.el: Make it work with latest changes in nnimap. gnus-sum.el (gnus-summary-move-article): Don't alter gnus-newsgroup-active. gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so that you don't get flashes of other buffers. nnimap.el: Fix up partial nnimap fetching. gnus-sum.el: Rework the `/ N' based on the new gnus-newsgroup-highest variable.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Mon, 27 Sep 2010 23:07:47 +0000
parents aeceb2460b39
children 376148b31b5e
line wrap: on
line source

/* Replacement langinfo.h file for building GNU Emacs on Windows.
   Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.

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.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */

#ifndef _LANGINFO_H
#define _LANGINFO_H

#include <nl_types.h>

enum {
  CODESET,
  DAY_1, DAY_2, DAY_3, DAY_4, DAY_5, DAY_6, DAY_7,
  MON_1, MON_2, MON_3, MON_4, MON_5, MON_6, MON_7, MON_8, MON_9, MON_10,
  MON_11, MON_12,

  /* Number of enumerated values.  */
  _NL_NUM
};

#define CODESET CODESET

#define DAY_1	DAY_1
#define DAY_2	DAY_2
#define DAY_3	DAY_3
#define DAY_4	DAY_4
#define DAY_5	DAY_5
#define DAY_6	DAY_6
#define DAY_7	DAY_7

#define MON_1	MON_1
#define MON_2	MON_2
#define MON_3	MON_3
#define MON_4	MON_4
#define MON_5	MON_5
#define MON_6	MON_6
#define MON_7	MON_7
#define MON_8	MON_8
#define MON_9	MON_9
#define MON_10	MON_10
#define MON_11	MON_11
#define MON_12	MON_12

extern char *nl_langinfo (nl_item);

#endif /* _LANGINFO_H */

/* arch-tag: a8917b7c-fb2c-4685-902b-742d0f67661b
   (do not change this comment) */