summaryrefslogtreecommitdiff
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-07-23 22:25:46 +0000
committerBram Moolenaar <Bram@vim.org>2005-07-23 22:25:46 +0000
commit58d9823409c590fe0e4cf3220d38dcad1d6dd68d (patch)
treefcf62865bef797f16e7e83392923fcfbc80e861b /src/globals.h
parentb01585904a5e4a6dc8bc8cc2aaaf7fbca260e344 (diff)
downloadvim-git-58d9823409c590fe0e4cf3220d38dcad1d6dd68d.tar.gz
updated for version 7.0114v7.0114
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h30
1 files changed, 5 insertions, 25 deletions
diff --git a/src/globals.h b/src/globals.h
index 72310bd27..2c6d8e2ec 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1080,6 +1080,9 @@ extern cursorentry_T shape_table[SHAPE_IDX_COUNT];
#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_PRINT_NUM_OPTIONS]
# 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)