+2009-02-06 Glenn Morris <rgm@gnu.org>
+
+ * simple.el (kill-whole-line): Provide a default argument of 1.
+
+ * mail/undigest.el (rmail-mail-separator): Delete.
+ (undigestify-rmail-message, unforward-rmail-message): Update for
+ mbox Rmail.
+
2009-02-05 Kenichi Handa <handa@m17n.org>
* international/fontset.el (script-representative-chars): Remove
\(This is meant to make \\[repeat] work well with negative arguments.\)
If ARG is zero, kill current line but exclude the trailing newline."
(interactive "p")
+ (or arg (setq arg 1))
(if (and (> arg 0) (eobp) (save-excursion (forward-visible-line 0) (eobp)))
(signal 'end-of-buffer nil))
(if (and (< arg 0) (bobp) (save-excursion (end-of-visible-line) (bobp)))