Function: sieve-next-line
sieve-next-line is an interactive and byte-compiled function defined
in sieve.el.gz.
Signature
(sieve-next-line &optional ARG)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/sieve.el.gz
(defun sieve-next-line (&optional arg)
(interactive)
(unless arg
(setq arg 1))
(if (save-excursion
(forward-line arg)
(sieve-script-at-point))
(sieve-change-region
(forward-line arg))
(message "End of list")))