* G. Milde <[EMAIL PROTECTED]> [2007-01-16 14:29]:

> > #292421: jed: Emacs key C-h b is not included in C-h listing (describe-keys)
> >   We should tag this bug upstream and forward it to the upstream authors.
> 
> If I read the request right, the reporter asks for an additional
> keybinding in the emacs emulation. We could recommend customizing
> keybindings in ~/.jed/jed.rc and also forward the idea to J. E. D..

You could also add a dpatch (attached below).  What to you think?

-- 
Rafael
#! /bin/sh /usr/share/dpatch/dpatch-run
## 00_add-describe-bindings-to-C-h.dpatch by Rafael Laboissiere <[EMAIL 
PROTECTED]>
##
## DP: Add C-h b binding to Emacs emulation

@DPATCH@

--- jed-0.99.18.orig/lib/site.sl
+++ jed-0.99.18/lib/site.sl
@@ -2289,6 +2289,7 @@
    switch (c)
      { case  8 or case 'H': help (); }
      { case  'A' : apropos (); }
+     { case  'B' : describe_bindings (); }
      { case  'I' : info_mode (); }
      { case  '?' : call ("select_menubar");}
      { case  'F' : describe_function ();}

Reply via email to