diff src/globals.h @ 440:eb531146be0e v7.0114

updated for version 7.0114
author vimboss
date Sat, 23 Jul 2005 22:25:46 +0000
parents c60ba877860b
children c36697964844
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1080,6 +1080,9 @@ extern cursorentry_T shape_table[SHAPE_I
 #endif
 
 #ifdef FEAT_PRINTER
+/*
+ * Printer stuff shared between hardcopy.c and machine-specific printing code.
+ */
 # define OPT_PRINT_TOP		0
 # define OPT_PRINT_BOT		1
 # define OPT_PRINT_LEFT		2
@@ -1126,34 +1129,11 @@ EXTERN option_table_T printer_opts[OPT_P
 # define PRT_UNIT_MM	2
 # define PRT_UNIT_POINT	3
 # define PRT_UNIT_NAMES {"pc", "in", "mm", "pt"}
-
-# ifdef FEAT_MBYTE
-# define OPT_MBFONT_USECOURIER  0
-# define OPT_MBFONT_ASCII       1
-# define OPT_MBFONT_REGULAR     2
-# define OPT_MBFONT_BOLD        3
-# define OPT_MBFONT_OBLIQUE     4
-# define OPT_MBFONT_BOLDOBLIQUE 5
-# define OPT_MBFONT_NUM_OPTIONS 6
-#
-EXTERN option_table_T mbfont_opts[OPT_MBFONT_NUM_OPTIONS]
-#  ifdef DO_INIT
- =
-{
-    {"c",	FALSE, 0, NULL, 0, FALSE},
-    {"a",	FALSE, 0, NULL, 0, FALSE},
-    {"r",	FALSE, 0, NULL, 0, FALSE},
-    {"b",	FALSE, 0, NULL, 0, FALSE},
-    {"i",	FALSE, 0, NULL, 0, FALSE},
-    {"o",	FALSE, 0, NULL, 0, FALSE},
-}
-#  endif
-;
-# endif
 #endif
 
 #ifdef FEAT_XCLIPBOARD
-EXTERN char	*xterm_display INIT(= NULL);	/* xterm display name */
+EXTERN char	*xterm_display INIT(= NULL);	/* xterm display name; points
+						   into argv[] */
 EXTERN Display	*xterm_dpy INIT(= NULL);	/* xterm display pointer */
 #endif
 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11)