From: David Kastrup <dak@gnu.org>
Subject: Re: Number of open buffers?
Date: 20 Nov 2003 23:14:30 +0100 [thread overview]
Message-ID: <x5y8uait6h.fsf@lola.goethe.zz> (raw)
In-Reply-To: ?fnord?u7k1u6773.fsf@ID-97657.usr.dfncis.de
lawrence mitchell <wence@gmx.li> writes:
> 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)))
>
Wel, if we want to squeeze characters of source, we can do so without
cl, too.
(defun get-number-of-file-buffers ()
(apply '+ (mapcar (lambda(x)(if(buffer-file-name x)1 0)) (buffer-list))))
--
David Kastrup, Kriemhildstr. 15, 44793 Bochum
next prev parent reply other threads:[~2003-11-20 22:14 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
2003-11-20 22:14 ` David Kastrup [this message]
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=x5y8uait6h.fsf@lola.goethe.zz \
--to=dak@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).