unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Seweryn Kokot <sewkokot@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: problem with elisp
Date: Wed, 08 Oct 2008 22:04:33 +0200	[thread overview]
Message-ID: <8763o2onu6.fsf@poczta.po.opole.pl> (raw)
In-Reply-To: m2k5cilxfd.fsf@nschum.de

Nikolaj Schumacher <me@nschum.de> writes:

> Seweryn Kokot <sewkokot@gmail.com> wrote:
>
>> Could you explain to me why the following function doesn't work in the first
>> version and when swapping line
>> 	(let ((string-temp (make-temp-name "")))
>> with
>>     (let ((string-temp "@temp@"))
>> it works correctly?
>
> Could you specify what's not working?  It seems to work for me.
>
> `make-temp-name' is not a good idea for what you're doing, though.
> While the same string will never be returned twice, there is no
> guarantee that the string doesn't exist in your buffer.  So make sure
> you use a very unique prefix.  On the other hand, there's no added
> benefit from using `make-temp-name' instead of just the prefix.

I see the problem in this function.

First I tested it with for example a buffer containing
--- start of buffer
1
2
--- end of buffer

so swapping 1 with 2 gives

--- start of buffer
5816MHs
1
--- end of buffer

string-temp was 5826MHs and with these 3 lines 

	  (goto-char (point-min))
	  (while (search-forward string-b nil t) ; string-b=2
		(replace-match string-a))            ; string-a=1

string-temp is changed to 5816MHs and in the end, the last 3 lines do
nothing. 

Any idea how to solve the problem?

-- 
regards,
Seweryn





  reply	other threads:[~2008-10-08 20:04 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-08 18:57 problem with elisp Seweryn Kokot
2008-10-08 19:05 ` Nikolaj Schumacher
2008-10-08 20:04   ` Seweryn Kokot [this message]
2008-10-08 20:33     ` Nikolaj Schumacher
2008-10-09 21:23       ` Seweryn Kokot
     [not found] ` <mailman.606.1223492748.25473.help-gnu-emacs@gnu.org>
2008-10-08 19:25   ` Barry Margolin
     [not found] <mailman.604.1223491809.25473.help-gnu-emacs@gnu.org>
2008-10-08 18:59 ` Joost Kremers

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=8763o2onu6.fsf@poczta.po.opole.pl \
    --to=sewkokot@gmail.com \
    --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).