diff options
author | agc <agc@pkgsrc.org> | 1999-06-03 08:28:49 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-06-03 08:28:49 +0000 |
commit | 9e2486ff5df7608a4cb05db4675476c2ce95240d (patch) | |
tree | babeab16849d6b967e72bbbd2b5a7138b30904e5 /editors/jed/patches | |
parent | 7c51b9a5d2b724d7375180a08d13e2e4d9bc178a (diff) | |
download | pkgsrc-9e2486ff5df7608a4cb05db4675476c2ce95240d.tar.gz |
Add fix from the author to avoid an s-lang error with Emacs keybindings.
Pointed out by Jukka Marin.
Diffstat (limited to 'editors/jed/patches')
-rw-r--r-- | editors/jed/patches/patch-ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/editors/jed/patches/patch-ac b/editors/jed/patches/patch-ac new file mode 100644 index 00000000000..f71a35d6b88 --- /dev/null +++ b/editors/jed/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 1999/06/03 08:28:49 agc Exp $ + +Patch to avoid s-lang error with Emacs keybindings + +--- src/keymap.c 1999/06/03 08:21:05 1.1 ++++ src/keymap.c 1999/06/03 08:21:29 +@@ -603,6 +603,7 @@ + { + *buf = 2; + *(buf + 1) = 256 - 1 - i; ++ buf[2] = 0; + SLang_push_string(SLang_make_keystring(buf)); + num++; + } |