diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a6680ef9afa..363d2510ded 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-05-06 Richard Stallman + + * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix. + 2007-05-05 Stefan Monnier * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file @@ -21,6 +25,11 @@ was geometric). All uses changed. (timeclock-generate-report): Support prefix argument. +2007-05-03 Ryan Yeske + + * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted + disconnections. + 2007-05-01 Romain Francoise * dired-x.el: Revert 2007-04-06 change. diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index fd762e2968f..85b150b6ae5 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -157,7 +157,7 @@ With prefix ARG, turn ElDoc mode on if and only if ARG is positive." ;;;###autoload (defun turn-on-eldoc-mode () - "Unequivocally turn on eldoc-mode (see variable documentation)." + "Unequivocally turn on ElDoc mode (see command `eldoc-mode')." (interactive) (eldoc-mode 1)) diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el index dc346695ce2..311c052fa30 100644 --- a/lisp/net/rcirc.el +++ b/lisp/net/rcirc.el @@ -312,7 +312,7 @@ and the cdr part is used for encoding." "List of urls seen in the current buffer.") (put 'rcirc-urls 'permanent-local t) -(defvar rcirc-timeout-seconds 60 +(defvar rcirc-timeout-seconds 600 "Kill connection after this many seconds if there is no activity.") (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version)) diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 5ebee61ecf2..ba206646a4b 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,12 @@ +2007-05-06 Richard Stallman + + * processes.texi (Accepting Output): Revert most of previous change. + +2007-05-05 Richard Stallman + + * processes.texi (Accepting Output): accept-process-output + uses microseconds, not milliseconds. But that arg is obsolete. + 2007-05-04 Karl Berry * elisp.texi (EMACSVER) [smallbook]: 22.1, not 22. diff --git a/lispref/processes.texi b/lispref/processes.texi index fbc8b785c11..81cac3e5046 100644 --- a/lispref/processes.texi +++ b/lispref/processes.texi @@ -1307,13 +1307,13 @@ The arguments @var{seconds} and @var{millisec} let you specify timeout periods. The former specifies a period measured in seconds and the latter specifies one measured in milliseconds. The two time periods thus specified are added together, and @code{accept-process-output} -returns after that much time whether or not there has been any +returns after that much time, whether or not there has been any subprocess output. - -The argument @var{seconds} need not be an integer. If it is a floating -point number, this function waits for a fractional number of seconds. -If @var{seconds} is 0, the function accepts whatever output is -pending but does not wait. + +The argument @var{millisec} is semi-obsolete nowadays because +@var{seconds} can be a floating point number to specify waiting a +fractional number of seconds. If @var{seconds} is 0, the function +accepts whatever output is pending but does not wait. @c Emacs 22.1 feature If @var{process} is a process, and the argument @var{just-this-one} is