From: "Andreas Röhler" <andreas.roehler@easy-emacs.de>
To: help-gnu-emacs@gnu.org
Subject: Re: elisp how to insert text at end of each line
Date: Thu, 11 Apr 2013 12:50:33 +0200 [thread overview]
Message-ID: <51669579.5080707@easy-emacs.de> (raw)
In-Reply-To: <1365675809309-283460.post@n5.nabble.com>
Am 11.04.2013 12:23, schrieb acomber:
> That works, thanks. I implemented as a function which inserted literal text.
>
> But I like the idea of being able to pass parameters to the function. so I
> tried this:
>
> (defun insert-at-end-of-line (text)
> "convert word tbl to html tbl"
> (interactive)
> (goto-char (point-min))
> (while (not (eobp))
> (end-of-line)
> (insert text)
> (next-line)
> )
> )
>
> But then in emacs how do I pass the text parameter?
>
> I keep getting:
>
> call-interactively: Wrong number of arguments: (lambda (text) "convert word
> tbl to html tbl" (interactive) (goto-char (point-min)) (while (not (eobp))
> (end-of-line) (insert text) (next-line))), 0
>
> Do I have to specify somewhere that function takes parameters???
>
>
>
> --
> View this message in context: http://emacs.1067599.n5.nabble.com/elisp-how-to-insert-text-at-end-of-each-line-tp283410p283460.html
> Sent from the Emacs - Help mailing list archive at Nabble.com.
>
>
that's probably not the best way to do it, just to play on,
fill the text at the (invisible) prompt in the minibuffer
(defun insert-at-end-of-line (text)
"convert word tbl to html tbl"
(interactive "*M")
(goto-char (point-min))
(while (not (eobp))
(end-of-line)
(insert text)
(forward-line 1)))
BTW use forward-line in programs, as next-line is designed for interactive use.
next prev parent reply other threads:[~2013-04-11 10:50 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-10 17:28 elisp how to insert text at end of each line acomber
2013-04-10 17:36 ` Steven Degutis
2013-04-10 17:39 ` Teemu Likonen
2013-04-10 17:42 ` Teemu Likonen
2013-04-10 18:13 ` Thorsten Jolitz
2013-04-11 10:23 ` acomber
2013-04-11 10:50 ` Andreas Röhler [this message]
2013-04-11 11:01 ` Andreas Röhler
2013-04-11 11:32 ` Thorsten Jolitz
2013-04-11 14:02 ` acomber
[not found] <mailman.23893.1365614915.855.help-gnu-emacs@gnu.org>
2013-04-10 18:07 ` Michael Heerdegen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51669579.5080707@easy-emacs.de \
--to=andreas.roehler@easy-emacs.de \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).