Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cc33cac9
Commit
cc33cac9
authored
Jan 10, 2014
by
Chong Yidong
Browse files
* progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
parent
d9d836b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/octave.el
lisp/progmodes/octave.el
+2
-1
No files found.
lisp/ChangeLog
View file @
cc33cac9
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
...
...
lisp/progmodes/octave.el
View file @
cc33cac9
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment