diff options
| author | Miles Bader | 2007-05-07 01:09:35 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-05-07 01:09:35 +0000 |
| commit | 589e28cdeb6ed3759c13ceab8412ff9a3ac2f809 (patch) | |
| tree | 321cebe8a72f1ff4b19826d3a1aa72f7b85dc86d /lisp | |
| parent | 2f7ab554c1e479f6a57412119c73dc2fe73e4d18 (diff) | |
| parent | 205f01b40431f9295febfdffb576fd3c0a58f147 (diff) | |
| download | emacs-589e28cdeb6ed3759c13ceab8412ff9a3ac2f809.tar.gz emacs-589e28cdeb6ed3759c13ceab8412ff9a3ac2f809.zip | |
Merge from emacs--rel--22
Patches applied:
* emacs--rel--22 (patch 9-10)
- Update from CVS
2007-05-06 Richard M. Stallman <rms@gnu.org>
* lisp/emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix.
2007-05-03 Ryan Yeske <rcyeske@gmail.com>
* lisp/net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted
disconnections.
2007-05-06 Richard M. Stallman <rms@gnu.org>
* lispref/processes.texi (Accepting Output): Revert most of previous change.
2007-05-05 Richard M. Stallman <rms@gnu.org>
* lispref/processes.texi (Accepting Output): accept-process-output
uses microseconds, not milliseconds. But that arg is obsolete.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-734
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/emacs-lisp/eldoc.el | 2 | ||||
| -rw-r--r-- | lisp/net/rcirc.el | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a6680ef9afa..363d2510ded 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-05-06 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/eldoc.el (turn-on-eldoc-mode): Doc fix. | ||
| 4 | |||
| 1 | 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-05-05 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file | 7 | * diff.el (diff): Use buffer-local vars diff-old-file and diff-new-file |
| @@ -21,6 +25,11 @@ | |||
| 21 | was geometric). All uses changed. | 25 | was geometric). All uses changed. |
| 22 | (timeclock-generate-report): Support prefix argument. | 26 | (timeclock-generate-report): Support prefix argument. |
| 23 | 27 | ||
| 28 | 2007-05-03 Ryan Yeske <rcyeske@gmail.com> | ||
| 29 | |||
| 30 | * net/rcirc.el (rcirc-timeout-seconds): Increase to prevent unwanted | ||
| 31 | disconnections. | ||
| 32 | |||
| 24 | 2007-05-01 Romain Francoise <romain@orebokech.com> | 33 | 2007-05-01 Romain Francoise <romain@orebokech.com> |
| 25 | 34 | ||
| 26 | * dired-x.el: Revert 2007-04-06 change. | 35 | * 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." | |||
| 157 | 157 | ||
| 158 | ;;;###autoload | 158 | ;;;###autoload |
| 159 | (defun turn-on-eldoc-mode () | 159 | (defun turn-on-eldoc-mode () |
| 160 | "Unequivocally turn on eldoc-mode (see variable documentation)." | 160 | "Unequivocally turn on ElDoc mode (see command `eldoc-mode')." |
| 161 | (interactive) | 161 | (interactive) |
| 162 | (eldoc-mode 1)) | 162 | (eldoc-mode 1)) |
| 163 | 163 | ||
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." | |||
| 312 | "List of urls seen in the current buffer.") | 312 | "List of urls seen in the current buffer.") |
| 313 | (put 'rcirc-urls 'permanent-local t) | 313 | (put 'rcirc-urls 'permanent-local t) |
| 314 | 314 | ||
| 315 | (defvar rcirc-timeout-seconds 60 | 315 | (defvar rcirc-timeout-seconds 600 |
| 316 | "Kill connection after this many seconds if there is no activity.") | 316 | "Kill connection after this many seconds if there is no activity.") |
| 317 | 317 | ||
| 318 | (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version)) | 318 | (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version)) |