diff options
| author | Richard M. Stallman | 2001-11-15 21:17:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-15 21:17:19 +0000 |
| commit | 83709c9f9134ddaa59434d136ab80e20b040e8f9 (patch) | |
| tree | a0065c539bf9c1eee2f947e682816ba00a0dcea7 | |
| parent | 8ec1b917e77780297a0e0bf4a6a9b95953539657 (diff) | |
| download | emacs-83709c9f9134ddaa59434d136ab80e20b040e8f9.tar.gz emacs-83709c9f9134ddaa59434d136ab80e20b040e8f9.zip | |
(jka-compr-partial-uncompress): Fix previous change.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/jka-compr.el | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 78d33adce86..01c7104e996 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-15 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * jka-compr.el (jka-compr-partial-uncompress): Fix previous change. | ||
| 4 | |||
| 1 | 2001-11-15 Stefan Monnier <monnier@cs.yale.edu> | 5 | 2001-11-15 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 6 | ||
| 3 | * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding. | 7 | * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding. |
| @@ -7,6 +11,16 @@ | |||
| 7 | * dired.el (dired-undo): Display a message to explain | 11 | * dired.el (dired-undo): Display a message to explain |
| 8 | that this does not undo file system changes. | 12 | that this does not undo file system changes. |
| 9 | 13 | ||
| 14 | 2001-11-15 Alan Shutko <ats@acm.org> | ||
| 15 | |||
| 16 | * compile.el (recompile): Use compilation-arguments if set, so as | ||
| 17 | to be able to M-x recompile the exact command which created a | ||
| 18 | compilation-mode buffer. | ||
| 19 | |||
| 20 | 2001-11-13 Richard M. Stallman <rms@gnu.org> | ||
| 21 | |||
| 22 | * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix. | ||
| 23 | |||
| 10 | 2001-11-15 David Kastrup <David.Kastrup@t-online.de> | 24 | 2001-11-15 David Kastrup <David.Kastrup@t-online.de> |
| 11 | 25 | ||
| 12 | * mouse-drag.el (mouse-drag-throw): Push back non-drag events | 26 | * mouse-drag.el (mouse-drag-throw): Push back non-drag events |
diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index c4a352bc983..5c42a0af8be 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el | |||
| @@ -310,7 +310,7 @@ to keep: LEN chars starting BEG chars from the beginning." | |||
| 310 | ;; dd seems to be unreliable about | 310 | ;; dd seems to be unreliable about |
| 311 | ;; providing the last block. So, always | 311 | ;; providing the last block. So, always |
| 312 | ;; read one more than you think you need. | 312 | ;; read one more than you think you need. |
| 313 | (if count (concat "count=" (1+ count)) ""))) | 313 | (if count (format "count=%d" (1+ count)) ""))) |
| 314 | jka-compr-acceptable-retval-list) | 314 | jka-compr-acceptable-retval-list) |
| 315 | (jka-compr-error prog args infile message err-file)) | 315 | (jka-compr-error prog args infile message err-file)) |
| 316 | (jka-compr-delete-temp-file err-file))) | 316 | (jka-compr-delete-temp-file err-file))) |