Mercurial > emacs
view nt/inc/langinfo.h @ 74629:1accf28d80f2
(mac_query_char_extents) [USE_ATSUI]: Don't call
ATSUGetGlyphBounds if not necessary.
(Vmac_atsu_font_table) [USE_ATSUI]: Remove Variable.
(syms_of_macterm) [USE_ATSUI]: Don't defvar it.
(fm_get_style_from_font, atsu_find_font_from_family_name)
(atsu_find_font_family_name, mac_atsu_font_face_attributes)
[USE_ATSUI]: New functions.
(init_font_name_table) [USE_ATSUI]: Use atsu_find_font_family_name.
(mac_load_query_font) [USE_ATSUI]: Use atsu_find_font_from_family_name.
Don't get metrics for Latin-1 right half characters.
(mac_load_query_font): Don't load font if space width is not positive.
[TARGET_API_MAC_CARBON] (mac_store_event_ref_as_apple_event): Use
mac_wakeup_from_rne instead of mac_post_mouse_moved_event.
(XTread_socket): Call SelectWindow when unfocused frame is clicked.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Fri, 15 Dec 2006 08:05:35 +0000 |
parents | 7caa2372b61c |
children | 3d45362f1d38 |
line wrap: on
line source
/* Replacement langinfo.h file for building GNU Emacs on Windows. Copyright (C) 2006 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 2, 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; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #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) */