unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: David Kastrup <dak@gnu.org>
Subject: Re: Number of open buffers?
Date: 21 Nov 2003 16:36:16 +0100	[thread overview]
Message-ID: <x5oev5d98v.fsf@lola.goethe.zz> (raw)
In-Reply-To: bplam3$nrj$1@pita.alt.net

Ignoramus15351 <ignoramus15351@NOSPAM.15351.invalid> writes:

> people, thank you, you are all beautiful.
> 
> The following works like a charm:
> 
> (defun get-number-of-file-buffers ()
>   (interactive)

Delete the (interactive) line: the function does nothing useful when
called interactively and thus should not clutter up command
completion.

>   (let (num)
>     (setq num 0)
>     (dolist (buf (buffer-list))
>       (when (buffer-file-name buf)
>         (setq num (+ num 1))
>         ))
>     num
>     )
>   )

Pffft.  The most verbose version.

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

  parent reply	other threads:[~2003-11-21 15:36 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
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 [this message]
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=x5oev5d98v.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).