diff options
| author | David Kastrup | 2005-01-09 13:31:53 +0000 |
|---|---|---|
| committer | David Kastrup | 2005-01-09 13:31:53 +0000 |
| commit | 0ba9bc53bd2a17a1c18bfc862a214c5eb61557a7 (patch) | |
| tree | e8c6f69dc6b70d6a4e2354f3c6604c924de69fb2 | |
| parent | 03e31a1a3e9c2ed558ad6aa6d1d74e751f75f231 (diff) | |
| download | emacs-0ba9bc53bd2a17a1c18bfc862a214c5eb61557a7.tar.gz emacs-0ba9bc53bd2a17a1c18bfc862a214c5eb61557a7.zip | |
(desktop-restore-eager): Fix typo in type.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/desktop.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 485aa4ce7e1..2b7b196c2fa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-01-09 David Kastrup <dak@gnu.org> | ||
| 2 | |||
| 3 | * desktop.el (desktop-restore-eager): Fix typo in type. | ||
| 4 | |||
| 1 | 2005-01-08 Richard M. Stallman <rms@gnu.org> | 5 | 2005-01-08 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * cus-edit.el (customize): Delete :link. | 7 | * cus-edit.el (customize): Delete :link. |
diff --git a/lisp/desktop.el b/lisp/desktop.el index 18bb638c045..77c7a1f076f 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el | |||
| @@ -271,7 +271,7 @@ Possible values are: | |||
| 271 | "Number of buffers to restore immediately. | 271 | "Number of buffers to restore immediately. |
| 272 | Remaining buffers are restored lazily (when Emacs is idle). | 272 | Remaining buffers are restored lazily (when Emacs is idle). |
| 273 | If value is t, all buffers are restored immediately." | 273 | If value is t, all buffers are restored immediately." |
| 274 | :type '(choise (const t) integer) | 274 | :type '(choice (const t) integer) |
| 275 | :group 'desktop | 275 | :group 'desktop |
| 276 | :version "21.4") | 276 | :version "21.4") |
| 277 | 277 | ||