diff options
| author | Lars Magne Ingebrigtsen | 2011-09-11 04:31:21 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-09-11 04:31:21 +0200 |
| commit | 77549ea89aa3398920a909548f5e2eefed012866 (patch) | |
| tree | b9f1210fb3f272277a9468a072a86af7b8f19831 | |
| parent | 803ef892ba1e92f904f763cd882298c2716b24b3 (diff) | |
| download | emacs-77549ea89aa3398920a909548f5e2eefed012866.tar.gz emacs-77549ea89aa3398920a909548f5e2eefed012866.zip | |
* image-mode.el (image-next-line): The line parameter is mandatory
| -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") |