From: lawrence mitchell <wence@gmx.li>
Subject: Re: Number of open buffers?
Date: Thu, 20 Nov 2003 21:50:08 +0000 [thread overview]
Message-ID: <?fnord?u7k1u6773.fsf@ID-97657.usr.dfncis.de> (raw)
In-Reply-To: x54qwykahp.fsf@lola.goethe.zz
David Kastrup wrote:
[...]
> (defun get-number-of-file-buffers ()
> (interactive)
> (let ((num 0))
> (dolist (buf (buffer-list) num)
> (when (buffer-file-name buf)
> (setq num (1+ num))))))
Assuming cl is loaded:
(defun get-number-of-file-buffers ()
(loop for b in (buffer-list) count (buffer-file-name b)))
:)
>> Thanks. When I try to run it via eval-expr, saying
>> (insert get-number-of-file-buffers)
>> It says: Error: void-variable. Data: get-number-of-file-buffers
> Yes. One calls a function by putting it after an opening
> parenthesis. The way you tried to "call" it, just a variable of that
> name got referenced, and there is no such variable. In addition, the
> function returns a numeric expression, and `insert' expects a string.
The OP may find reading the Emacs Lisp Introduction a useful
exercise, it's not that long, and, I think, explains the basics
of emacs lisp quite nicely.
--
lawrence mitchell <wence@gmx.li>
next prev parent reply other threads:[~2003-11-20 21:50 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bpilkc$pq1$0@pita.alt.net>
2003-11-20 16:19 ` Number of open buffers? Eli Zaretskii
[not found] ` <mailman.342.1069348789.399.help-gnu-emacs@gnu.org>
[not found] ` <bpirf4$8ee$2@pita.alt.net>
2003-11-20 18:10 ` Micah Cowan
[not found] ` <bpja4e$89m$1@pita.alt.net>
2003-11-20 21:15 ` David Kastrup
2003-11-20 21:50 ` lawrence mitchell [this message]
2003-11-20 22:14 ` David Kastrup
2003-11-20 22:46 ` lawrence mitchell
2003-11-20 23:40 ` David Kastrup
2003-11-20 22:42 ` Johan Bockgård
2003-11-20 21:43 ` Lucas
[not found] ` <mailman.369.1069368465.399.help-gnu-emacs@gnu.org>
[not found] ` <bplam3$nrj$1@pita.alt.net>
2003-11-21 15:36 ` David Kastrup
2003-11-21 15:52 ` Stefan Monnier
2003-11-21 20:21 ` Lucas
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='?fnord?u7k1u6773.fsf@ID-97657.usr.dfncis.de' \
--to=wence@gmx.li \
/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).