diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-09-11 04:31:21 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-09-11 04:31:21 +0200 |
commit | 77549ea89aa3398920a909548f5e2eefed012866 (patch) | |
tree | b9f1210fb3f272277a9468a072a86af7b8f19831 /lisp/image-mode.el | |
parent | 803ef892ba1e92f904f763cd882298c2716b24b3 (diff) | |
download | emacs-77549ea89aa3398920a909548f5e2eefed012866.tar.gz |
* image-mode.el (image-next-line): The line parameter is mandatory
Diffstat (limited to 'lisp/image-mode.el')
-rw-r--r-- | lisp/image-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (interactive "p") (image-forward-hscroll (- n))) -(defun image-next-line (&optional n) +(defun image-next-line (n) "Scroll image in current window upward by N lines. Stop if the bottom edge of the image is reached." (interactive "p") |