diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/image-mode.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 87cfafad3c6..f321ae359bd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * image-mode.el (image-next-line): The line parameter is mandatory | ||
| 4 | (bug#9258). | ||
| 5 | |||
| 3 | * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too, | 6 | * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too, |
| 4 | which can be useful (bug#9301). | 7 | which can be useful (bug#9301). |
| 5 | 8 | ||
diff --git a/lisp/image-mode.el b/lisp/image-mode.el index f75f4e20219..cffa2592aa1 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el | |||
| @@ -163,7 +163,7 @@ Stop if the left edge of the image is reached." | |||
| 163 | (interactive "p") | 163 | (interactive "p") |
| 164 | (image-forward-hscroll (- n))) | 164 | (image-forward-hscroll (- n))) |
| 165 | 165 | ||
| 166 | (defun image-next-line (&optional n) | 166 | (defun image-next-line (n) |
| 167 | "Scroll image in current window upward by N lines. | 167 | "Scroll image in current window upward by N lines. |
| 168 | Stop if the bottom edge of the image is reached." | 168 | Stop if the bottom edge of the image is reached." |
| 169 | (interactive "p") | 169 | (interactive "p") |