auto-complete / popup-el

Visual Popup Interface Library for Emacs
GNU General Public License v3.0
446 stars 96 forks source link

fixed deficient help-delay #63

Closed aki2o closed 10 years ago

aki2o commented 10 years ago

When I did eval of the following code, the error was shown, which is (wrong-type-argument arrayp nil).

(popup-cascade-menu '(Foo (Bar Baz) (Hoge Fuga))
                    :help-delay 1.5)

The cause is lookup-key that is called with nil by the timeout of popup-menu-read-key-sequence.

In addition, the menu item help was not shown because the help-delay slot is deficient when do popup-cascade-menu to the sublist of the menu.

Best regards.

syohex commented 10 years ago

@aki2o Thank you very much