From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: how can I read 1 char from current point? Date: Wed, 28 Mar 2012 13:24:26 -0700 Message-ID: <47C4DDCAB668407682FFB299D4199749@us.oracle.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1332982181 8463 80.91.229.3 (29 Mar 2012 00:49:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 29 Mar 2012 00:49:41 +0000 (UTC) To: , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 29 02:49:40 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SD3YZ-000745-40 for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Mar 2012 02:49:39 +0200 Original-Received: from localhost ([::1]:53024 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SD3YY-0007zZ-FV for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Mar 2012 20:49:38 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:34846) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SD2d6-0005Gm-DU for help-gnu-emacs@gnu.org; Wed, 28 Mar 2012 19:50:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SCzQ1-0002pg-6j for help-gnu-emacs@gnu.org; Wed, 28 Mar 2012 16:24:35 -0400 Original-Received: from acsinet15.oracle.com ([141.146.126.227]:19650) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCzQ1-0002pJ-0N for help-gnu-emacs@gnu.org; Wed, 28 Mar 2012 16:24:33 -0400 Original-Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by acsinet15.oracle.com (Sentrion-MTA-4.2.2/Sentrion-MTA-4.2.2) with ESMTP id q2SKOTe5011157 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 28 Mar 2012 20:24:30 GMT Original-Received: from acsmt358.oracle.com (acsmt358.oracle.com [141.146.40.158]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id q2SKOSwk022595 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Mar 2012 20:24:29 GMT Original-Received: from abhmt103.oracle.com (abhmt103.oracle.com [141.146.116.55]) by acsmt358.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id q2SKOSJU001519; Wed, 28 Mar 2012 15:24:28 -0500 Original-Received: from dradamslap1 (/130.35.178.194) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 28 Mar 2012 13:24:28 -0700 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Thread-Index: Ac0NGi2p8M5UO499TYiMoWYWEV4JnQABoEKA X-Source-IP: acsinet21.oracle.com [141.146.126.237] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090209.4F73737F.0034,ss=1,re=0.000,fgs=0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 1) X-Received-From: 141.146.126.227 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84191 Archived-At: > thing-at-point can read word and line and symbol > (thing-at-point 'symbol) > but I can't find the only one point char form buffer. > how can i do? See functions `char-after' and `char-before'. `char-after' is probably what you want.