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
bd3e1759
Commit
bd3e1759
authored
Nov 18, 1995
by
Noah Friedman
Browse files
(eldoc-minor-mode-string): New variable.
parent
6540a6f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lisp/emacs-lisp/eldoc.el
lisp/emacs-lisp/eldoc.el
+6
-3
No files found.
lisp/emacs-lisp/eldoc.el
View file @
bd3e1759
...
...
@@ -11,9 +11,9 @@
;; LCD Archive Entry:
;; eldoc|Noah Friedman|friedman@prep.ai.mit.edu|
;; show function arglist or variable docstring in echo area|
;; $Date: 1995/11/1
2 21:04:08
$|$Revision: 1.
1
$|~/misc/eldoc.el.gz|
;; $Date: 1995/11/1
3 01:37:40
$|$Revision: 1.
2
$|~/misc/eldoc.el.gz|
;; $Id: eldoc.el,v 1.
1
1995/11/1
2 21:04:08
friedman
Rel
friedman $
;; $Id: eldoc.el,v 1.
2
1995/11/1
3 01:37:40
friedman
Exp
friedman $
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
...
...
@@ -115,11 +115,14 @@ It is probably best to manipulate this data structure with the commands
;; be printed again if necessary without reconsing.
(
defvar
eldoc-last-data
'
(
nil
.
nil
))
(
defvar
eldoc-minor-mode-string
" ElDoc"
"*String to display in mode line when Eldoc Mode is enabled."
)
;; Put this minor mode on the global minor-mode-alist.
(
or
(
assq
'eldoc-mode
(
default-value
'minor-mode-alist
))
(
setq-default
minor-mode-alist
(
append
(
default-value
'minor-mode-alist
)
'
((
eldoc-mode
" ElDoc"
)))))
'
((
eldoc-mode
eldoc-minor-mode-string
)))))
;;;###autoload
...
...
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