diff options
Diffstat (limited to 'x11/xterm/patches/patch-charproc_c')
-rw-r--r-- | x11/xterm/patches/patch-charproc_c | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/x11/xterm/patches/patch-charproc_c b/x11/xterm/patches/patch-charproc_c index d1bd3be..d948210 100644 --- a/x11/xterm/patches/patch-charproc_c +++ b/x11/xterm/patches/patch-charproc_c @@ -1,16 +1,12 @@ +$OpenBSD$ + +Disable fontops completely +BlinkCuror fix + Index: charproc.c --- charproc.c.orig +++ charproc.c -@@ -363,7 +363,7 @@ static XtActionsRec actionsList[] = { - { "meta-sends-escape", HandleMetaEsc }, - { "set-num-lock", HandleNumLock }, - #endif --#ifdef OPT_PRINT_ON_EXIT -+#if OPT_PRINT_ON_EXIT - { "print-immediate", HandlePrintImmediate }, - { "print-on-error", HandlePrintOnError }, - #endif -@@ -578,7 +578,7 @@ static XtResource xterm_resources[] = +@@ -580,7 +580,7 @@ static XtResource xterm_resources[] = #if OPT_BLINK_CURS Bres(XtNcursorBlinkXOR, XtCCursorBlinkXOR, screen.cursor_blink_xor, True), @@ -19,7 +15,16 @@ Index: charproc.c #endif Bres(XtNcursorUnderLine, XtCCursorUnderLine, screen.cursor_underline, False), -@@ -13158,7 +13158,7 @@ ReallyReset(XtermWidget xw, Bool full, Bool saved) +@@ -10151,7 +10151,7 @@ VTInitialize(Widget wrequest, + screen->allowPasteControls = screen->allowPasteControl0; + screen->allowSendEvents = screen->allowSendEvent0; + screen->allowColorOps = screen->allowColorOp0; +- screen->allowFontOps = screen->allowFontOp0; ++ screen->allowFontOps = False; + screen->allowMouseOps = screen->allowMouseOp0; + screen->allowTcapOps = screen->allowTcapOp0; + screen->allowTitleOps = screen->allowTitleOp0; +@@ -13213,7 +13213,7 @@ ReallyReset(XtermWidget xw, Bool full, Bool saved) InitCursorShape(screen, screen); xtermSetCursorBox(screen); #if OPT_BLINK_CURS |