We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e424ab1 commit d1d7af6Copy full SHA for d1d7af6
cmd/sword-macro/main.go
@@ -19,7 +19,7 @@ func init() {
19
runtime.LockOSThread()
20
}
21
22
-const VERSION = "2.6.1"
+const VERSION = "2.6.2"
23
24
func main() {
25
// Windows 콘솔 ANSI 지원 활성화 및 UTF-8 설정
internal/input/input_darwin.go
@@ -79,7 +79,7 @@ const char* getClipboard() {
79
NSPasteboard* pb = [NSPasteboard generalPasteboard];
80
NSString* str = [pb stringForType:NSPasteboardTypeString];
81
if (str == nil) {
82
- return "";
+ return NULL;
83
84
return strdup([str UTF8String]); // caller must free
85
0 commit comments