aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2000-11-10 22:17:41 +0000
committerJason Rumney2000-11-10 22:17:41 +0000
commit6205b7cebc95a2d65e76c46bbea3b258c8587378 (patch)
treeb3fd6f09250cdc2b7f14a33f13ef2db54bdf496f
parent767b1ff036dbf9a84b3535e7a621c4e5dc07a512 (diff)
downloademacs-6205b7cebc95a2d65e76c46bbea3b258c8587378.tar.gz
emacs-6205b7cebc95a2d65e76c46bbea3b258c8587378.zip
(CP_8BIT, CP_UNICODE, CP_INVALID): New pseudo-codepages.
-rw-r--r--src/w32term.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h
index f0292d28d94..152d83e2aa6 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -40,6 +40,10 @@ Boston, MA 02111-1307, USA. */
40 ((f)->bdf ? (f)->bdf->width : (f)->tm.tmMaxCharWidth) 40 ((f)->bdf ? (f)->bdf->width : (f)->tm.tmMaxCharWidth)
41 41
42#define CP_DEFAULT 1004 42#define CP_DEFAULT 1004
43/* Special psuedo-codepages. */
44#define CP_8BIT -1
45#define CP_UNICODE -2
46#define CP_INVALID -3
43 47
44#define CHECK_W32_FRAME(f, frame) \ 48#define CHECK_W32_FRAME(f, frame) \
45 if (NILP (frame)) \ 49 if (NILP (frame)) \
@@ -51,7 +55,6 @@ Boston, MA 02111-1307, USA. */
51 } \ 55 } \
52 if (! FRAME_W32_P (f)) 56 if (! FRAME_W32_P (f))
53 57
54
55/* Indicates whether we are in the readsocket call and the message we 58/* Indicates whether we are in the readsocket call and the message we
56 are processing in the current loop */ 59 are processing in the current loop */
57 60