* progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user