emacs-devel
[Top][All Lists]
Advanced

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

Re: dolist?


From: David Ponce
Subject: Re: dolist?
Date: Sat, 02 Jul 2005 23:46:31 +0200
User-agent: Mozilla Thunderbird 1.0.2-1.3.3 (X11/20050513)

Lennart Borgman wrote:
Juanma Barranquero wrote:

(mapc #'(lambda (x) (message "...%s" x)) '(1 2 3 4))

In *Messages* =>
...4

Seems like a "feature" of the messages, when using "...".
[...]

Yes it permits this:

(progn
  (message "test...")
  (message "test...done")
  )

*Messages*

test...done

With this:

(progn
  (message "test..")
  (message "test..done")
  )

*Messages*

test..
test..done

David





reply via email to

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