This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 901130d64677f7781c8378ad208efdf93f5cec0c Mon Sep 17 00:00:00 2001 | |
| From: ckath <ckath@yandex.ru> | |
| Date: Wed, 15 Apr 2026 20:02:29 +0200 | |
| Subject: [PATCH 1/1] fix opening matches with NOCHAR padded widechars | |
| --- | |
| src/perl/matcher | 2 ++ | |
| 1 file changed, 2 insertions(+) | |
| diff --git a/src/perl/matcher b/src/perl/matcher |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* compile: gcc -o x x.c -lXrandr -lX11 */ | |
| #include <stdio.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/extensions/Xrandr.h> | |
| int main(void) { | |
| Display *dpy = XOpenDisplay(NULL); | |
| if (!dpy) { | |
| fprintf(stderr,"failed to open display\n"); |