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
a1a57a42
Commit
a1a57a42
authored
Sep 27, 2007
by
Juanma Barranquero
Browse files
(eldoc-message-commands-table-size, eldoc-message-commands,
eldoc-current-idle-delay): Fix typos in docstrings.
parent
d56f40cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
lisp/ChangeLog
lisp/ChangeLog
+10
-2
lisp/emacs-lisp/eldoc.el
lisp/emacs-lisp/eldoc.el
+3
-3
No files found.
lisp/ChangeLog
View file @
a1a57a42
2007-09-27 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
(eldoc-message-commands, eldoc-current-idle-delay):
Fix typos in docstrings.
* progmodes/python.el (python-eldoc-function): Doc fix.
2007-09-26 Eli Zaretskii <eliz@gnu.org>
* menu-bar.el (menu-bar-search-documentation-menu): Renamed from
...
...
@@ -68,7 +76,7 @@
2007-09-22 Glenn Morris <rgm@gnu.org>
* eshell/esh-mode.el (eshell-output-filter-functions): Add
eshell-postoutput-scroll-to-bottom.
eshell-postoutput-scroll-to-bottom.
2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
...
...
@@ -820,7 +828,7 @@
* help.el (resize-temp-buffer-window): Use window-full-width-p
instead of comparing frame-width and window-width.
2007-08-05 Peter Povinec <ppovinec <at> yahoo.com> (tiny change)
2007-08-05 Peter Povinec <ppovinec <at> yahoo.com>
(tiny change)
* term.el: Honor term-default-fg-color and term-default-bg-color
settings when modifying term-current-face.
lisp/emacs-lisp/eldoc.el
View file @
a1a57a42
...
...
@@ -104,7 +104,7 @@ truncated to make more of the arglist or documentation string visible."
;;; No user options below here.
(defvar eldoc-message-commands-table-size 31
"
This
is
used
by
eldoc-add-command
to
initialize
eldoc-message-commands
"
This
is
used
by
`
eldoc-add-command
'
to
initialize
`
eldoc-message-commands
'
as
an
obarray.
It
should
probably
never
be
necessary
to
do
so,
but
if
you
choose
to
increase
the
number
of
buckets,
you
must
do
so
before
loading
...
...
@@ -116,7 +116,7 @@ Remember to keep it a prime number to improve hash performance.")
"
Commands
after
which
it
is
appropriate
to
print
in
the
echo
area.
Eldoc
does
not
try
to
print
function
arglists,
etc.
after
just
any
command,
because
some
commands
print
their
own
messages
in
the
echo
area
and
these
functions
would
instantly
overwrite
them.
But
self-insert-command
as
well
functions
would
instantly
overwrite
them.
But
`
self-insert-command
'
as
well
as
most
motion
commands
are
good
candidates.
This
variable
contains
an
obarray
of
symbols
; do not manipulate it
directly.
Instead,
use
`
eldoc-add-command
'
and
`
eldoc-remove-command
'.
")
...
...
@@ -132,7 +132,7 @@ directly. Instead, use `eldoc-add-command' and `eldoc-remove-command'.")
(defvar eldoc-timer nil "
eldoc
's
timer
object.
")
(defvar eldoc-current-idle-delay eldoc-idle-delay
"
i
dle
time
delay
currently
in
use
by
timer.
"
I
dle
time
delay
currently
in
use
by
timer.
This
is
used
to
determine
if
`
eldoc-idle-delay
'
is
changed
by
the
user.
")
...
...
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