From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: test char Date: Sat, 29 Nov 2008 12:14:20 +0200 Message-ID: References: <9c02116c-66a7-4372-a4da-c7cd6ceb5383@q26g2000prq.googlegroups.com> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1227953690 29449 80.91.229.12 (29 Nov 2008 10:14:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 29 Nov 2008 10:14:50 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 29 11:15:55 2008 Return-path: Envelope-to: geh-help-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 1L6Mri-00016w-I9 for geh-help-gnu-emacs@m.gmane.org; Sat, 29 Nov 2008 11:15:54 +0100 Original-Received: from localhost ([127.0.0.1]:44218 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L6MqY-0005HH-JZ for geh-help-gnu-emacs@m.gmane.org; Sat, 29 Nov 2008 05:14:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L6Mq5-0005Fy-A4 for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 05:14:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L6Mq4-0005FF-0Q for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 05:14:12 -0500 Original-Received: from [199.232.76.173] (port=60681 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L6Mq3-0005F5-S1 for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 05:14:11 -0500 Original-Received: from mtaout2.012.net.il ([84.95.2.4]:47645) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L6Mq3-0003Mm-HH for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 05:14:11 -0500 Original-Received: from conversion-daemon.i_mtaout2.012.net.il by i_mtaout2.012.net.il (HyperSendmail v2004.12) id <0KB300800B2E3Z00@i_mtaout2.012.net.il> for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 12:16:17 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([77.127.156.55]) by i_mtaout2.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KB30026HB74ZEH0@i_mtaout2.012.net.il> for help-gnu-emacs@gnu.org; Sat, 29 Nov 2008 12:16:17 +0200 (IST) In-reply-to: <9c02116c-66a7-4372-a4da-c7cd6ceb5383@q26g2000prq.googlegroups.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:60222 Archived-At: > From: Xend > Date: Fri, 28 Nov 2008 21:00:03 -0800 (PST) > > are there Emacs function like Libc function isupper / isalpha??? It's all too easy to make one: (eq (downcase ch) ch) Btw, why do you need such a function? What do you need to do if these functions return t? Perhaps you could do whatever you need without such a test?