* progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.

This commit is contained in:
Chong Yidong 2014-01-10 18:35:36 +08:00
parent d9d836b5c4
commit cc33cac98a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-01-10 Chong Yidong <cyd@gnu.org>
* progmodes/octave.el (octave-mode-menu): Don't assume eldoc is
loaded.
2014-01-10 Anders Lindgren <andlind@gmail.com>
* follow.el (follow-cache-command-list): Include right-char and

View file

@ -158,7 +158,8 @@ parenthetical grouping.")
(if (fboundp 'eldoc-post-insert-mode)
'eldoc-post-insert-mode
'eldoc-mode))
:style toggle :selected (or eldoc-post-insert-mode eldoc-mode)
:style toggle :selected (or (bound-and-true-p eldoc-post-insert-mode)
(bound-and-true-p eldoc-mode))
:help "Display function signatures after typing `SPC' or `('"]
["Delimiter Matching" show-paren-mode
:style toggle :selected show-paren-mode