From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Hansen Newsgroups: gmane.emacs.devel Subject: `clone-indirect-buffer' buffer naming. Date: Wed, 11 Jun 2008 13:19:28 +0200 Organization: disorganized Message-ID: <87hcc09q2n.fsf@localhorst.mine.nu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1213183424 6173 80.91.229.12 (11 Jun 2008 11:23:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 11 Jun 2008 11:23:44 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 11 13:24:27 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K6ORG-0003gy-Tz for ged-emacs-devel@m.gmane.org; Wed, 11 Jun 2008 13:24:27 +0200 Original-Received: from localhost ([127.0.0.1]:42260 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K6OQT-00086A-EA for ged-emacs-devel@m.gmane.org; Wed, 11 Jun 2008 07:23:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K6OQM-00084h-RS for emacs-devel@gnu.org; Wed, 11 Jun 2008 07:23:30 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K6OQJ-00083w-7a for emacs-devel@gnu.org; Wed, 11 Jun 2008 07:23:30 -0400 Original-Received: from [199.232.76.173] (port=43923 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K6OQJ-00083t-10 for emacs-devel@gnu.org; Wed, 11 Jun 2008 07:23:27 -0400 Original-Received: from main.gmane.org ([80.91.229.2]:47907 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K6OQI-00067q-Mn for emacs-devel@gnu.org; Wed, 11 Jun 2008 07:23:26 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1K6OQ7-0007K9-8b for emacs-devel@gnu.org; Wed, 11 Jun 2008 11:23:15 +0000 Original-Received: from e178037057.adsl.alicedsl.de ([85.178.37.57]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 11 Jun 2008 11:23:15 +0000 Original-Received: from david.hansen by e178037057.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 11 Jun 2008 11:23:15 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 27 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178037057.adsl.alicedsl.de Mail-Copies-To: nobody User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:ChtHaX0Bq1WnvwWM/eqSTGtdvPg= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:98940 Archived-At: Hello, the doc of `clone-indirect-buffer' states: Give the indirect buffer name NEWNAME. Interactively, read NEWNAME from the minibuffer when invoked with a prefix arg. If NEWNAME is nil or if not called with a prefix arg, NEWNAME defaults to the current buffer's name. The name is modified by adding a `' suffix to it or by incrementing the N in an existing suffix. I don't see this modification. E.g. $ emacs -Q tmp/foo.txt M-x clone-indirect-buffer M-: (require 'cl) M-: (loop for b in (buffer-list) when (string-match "foo" (buffer-name b)) collect b) --> (# #) Bug? Misleading documentation? David