help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: yank-repeat-newline


From: Teemu Likonen
Subject: Re: yank-repeat-newline
Date: Tue, 26 Jul 2011 22:19:44 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux)

* 2011-07-26T21:12:35+02:00 * Andreas Röhler wrote:

> Now when trying to combine both, get difficulties
>
> ;; not working now
> (defun yank-repeat-newline (arg &optional nl)
>   "With numerical ARG, repeat last yank ARG times.
> With optional arg NL, also insert newlines. "
>   (interactive "p\nP*")
>   (let ((nl nl)
>         (num arg))
>     (dotimes (i num)
>       (if nl
>           (insert (concat (car kill-ring) "\n"))
>         (insert (car kill-ring))))))
>
> What is the recommended way writing that?

Please tell us what you want. How should the command work? How do you
want to execute it and what should it do?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]