From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nick Roberts Newsgroups: gmane.emacs.bugs Subject: Re: Missing arglist for char-after Date: Wed, 13 Jun 2007 16:08:33 +1200 Message-ID: <18031.28097.22717.134047@kahikatea.snap.net.nz> References: <200706130024.l5D0O5Z0029512@ushabti.sfbay.sun.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1181707787 19508 80.91.229.12 (13 Jun 2007 04:09:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 13 Jun 2007 04:09:47 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org To: Whitfield Diffie Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Jun 13 06:09:46 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HyKAw-0005ot-BZ for geb-bug-gnu-emacs@m.gmane.org; Wed, 13 Jun 2007 06:09:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HyKAv-0000mb-Ng for geb-bug-gnu-emacs@m.gmane.org; Wed, 13 Jun 2007 00:09:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HyKA4-0000TM-V4 for bug-gnu-emacs@gnu.org; Wed, 13 Jun 2007 00:08:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HyKA3-0000SZ-D6 for bug-gnu-emacs@gnu.org; Wed, 13 Jun 2007 00:08:48 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HyKA3-0000SU-B0 for bug-gnu-emacs@gnu.org; Wed, 13 Jun 2007 00:08:47 -0400 Original-Received: from viper.snap.net.nz ([202.37.101.8]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HyKA2-0002ix-Hf for bug-gnu-emacs@gnu.org; Wed, 13 Jun 2007 00:08:47 -0400 Original-Received: from kahikatea.snap.net.nz (205.60.255.123.dynamic.snap.net.nz [123.255.60.205]) by viper.snap.net.nz (Postfix) with ESMTP id 5FDA43D9363; Wed, 13 Jun 2007 16:08:42 +1200 (NZST) Original-Received: by kahikatea.snap.net.nz (Postfix, from userid 1000) id D265F8F9DD; Wed, 13 Jun 2007 16:08:33 +1200 (NZST) In-Reply-To: <200706130024.l5D0O5Z0029512@ushabti.sfbay.sun.com> X-Mailer: VM 7.19 under Emacs 22.1.50.1 X-detected-kernel: Linux 2.4-2.6 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:15868 Archived-At: > I typed helpfchar-after C-h f char-after ? > and got the following result: > > char-after is a built-in function. > [Missing arglist. Please make a bug report.] > > Return character in current buffer at position POS. > POS is an integer or a marker and defaults to point. > If POS is out of range, the value is nil. > > (fn &optional POS) > > [back] Someone else might know more than me, but until they say something, what does your entry for char-after look like in etc/DOC-22.1.1? In between control characters my DOC file looks like this: Fchar-after Return character in current buffer at position POS. POS is an integer or a marker and defaults to point. If POS is out of range, the value is nil. (fn &optional POS) i.e Is the optional argument POS present? -- Nick http://www.inet.net.nz/~nickrob > In GNU Emacs 22.1.1 (sparc-sun-solaris2.8, GTK+ Version 2.11.1) > of 2007-06-11 on pkg-build > configured using `configure '--prefix=/pkg/gnu' '--x-includes=/pkg/gnome/include:/usr/X11/include:/usr/openwin/include:/usr/dt/include:/pkg/X11/include' '--x-libraries=/pkg/gnome/lib:/usr/X11/lib:/usr/openwin/lib:/usr/dt/lib:/pkg/X11/lib' '--with-x' '--with-x-toolkit=gtk' '--with-pkg-config-prog=/usr/bin/pkg-config' '--with-xpm' '--with-jpeg' '--with-tiff' '--with-gif' '--with-png' 'CC=gcc' 'CFLAGS= -O3 -mv8 -mtune=ultrasparc' 'LDFLAGS=-L/pkg/local/lib -R/pkg/local/lib -L/pkg/gnu/lib -R/pkg/gnu/lib' 'CPPFLAGS=-I/pkg/local/include -I/pkg/local/include/libpng -I/pkg/gnu/include'' > ....