* progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
This commit is contained in:
parent
d9d836b5c4
commit
cc33cac98a
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue