From: Merciadri Luca <Luca.Merciadri@student.ulg.ac.be>
To: help-gnu-emacs@gnu.org
Subject: Re: Adding `#' at each new line with text until the end of the file
Date: Tue, 18 May 2010 12:09:21 +0200 [thread overview]
Message-ID: <87aarx4j3i.fsf@merciadriluca-station.MERCIADRILUCA> (raw)
In-Reply-To: 87zkzyjkcb.fsf@kuiper.lan.informatimago.com
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
pjb@informatimago.com (Pascal J. Bourguignon) writes:
> Merciadri Luca <Luca.Merciadri@student.ulg.ac.be> writes:
>
>> pjb@informatimago.com (Pascal J. Bourguignon) writes:
>>
>>>
>>> So:
>>> (while (< (point) (point-max))
>>> (when (looking-at ".")
>>> (insert "#"))
>>> (forward-line))
>>>
>>
>> After extensive testing,
>>
>> ==
>> (defun fildi ()
>> (find-file "~/Sayings")
>> (goto-char (point-min))
>> (while (< (point) (point-max))
>> (when (looking-at ".")
>> (insert "#"))
>> (forward-line))
>> )
>> ==
>>
>> does not work. When I evaluate it using C-x C-e (in a buffer), it only
>> says `fildi', which does not look very interesting. What am I doing
>> wrong? It finds the file; it goes to the beginning of it; while it has
>> not reached the end of the file, it looks for a line containing a dot
>> (as every saying ends by a dot);
>
> No. Did you read the documentation of looking-at?
No. I should have done it.
> Because that's
> what you should do for every new function you see!
Nice reflex.
> What does the
> documentation of looking-at says about the arguments of the function?
>
> (looking-at ".") tests whether the cursor is at position where there
> is any character, but a newline. That is, it tests whether the line
> contains something, since we should be at the beginning of the line,
> because this is what point-min should be at (actually, unless you
> narrow the region from the middle of a line), and this is ensured by
> forward-line.
Okay, thanks.
>
>> while this works, it inserts a "#"
>> and, as the cursor is at the beginning of the line, it inserts a "#"
>> at the beginning of the line. It also goes to the next line. And?
>
> Wasn't it what you asked for? Otherwise I didn't understand what you
> wanted.
Sure, but, as I explained in my previous message, it does not even
modify the Sayings file. Why?
- --
Merciadri Luca
See http://www.student.montefiore.ulg.ac.be/~merciadri/
- --
All flowers are not in one garden.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8 <http://mailcrypt.sourceforge.net/>
iEYEARECAAYFAkvyZ1EACgkQM0LLzLt8MhxBqQCfTSIZs8NH6I+BWy9zXViSHlDc
65IAnie+few8wvSEwVuQMNtnmNao6tdq
=uGJQ
-----END PGP SIGNATURE-----
next prev parent reply other threads:[~2010-05-18 10:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-17 16:05 Adding `#' at each new line with text until the end of the file Merciadri Luca
2010-05-17 18:26 ` Pascal J. Bourguignon
2010-05-17 20:11 ` Merciadri Luca
[not found] ` <87zkzyjkcb.fsf@kuiper.lan.informatimago.com>
2010-05-18 10:09 ` Merciadri Luca [this message]
2010-05-18 12:06 ` Pascal J. Bourguignon
2010-05-18 16:47 ` Merciadri Luca
2010-05-18 20:27 ` Pascal J. Bourguignon
2010-05-19 16:08 ` Merciadri Luca
2010-05-20 13:18 ` Pascal J. Bourguignon
2010-05-20 18:09 ` Merciadri Luca
2010-05-20 19:05 ` Andreas Politz
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87aarx4j3i.fsf@merciadriluca-station.MERCIADRILUCA \
--to=luca.merciadri@student.ulg.ac.be \
--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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.