From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jambunathan K Newsgroups: gmane.emacs.help Subject: Re: advance char Date: Thu, 06 Jun 2013 14:39:22 +0530 Message-ID: <877gi7sj0d.fsf@gmail.com> References: <51B04556.5090608@easy-emacs.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1370509762 29816 80.91.229.3 (6 Jun 2013 09:09:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Jun 2013 09:09:22 +0000 (UTC) Cc: "help-gnu-emacs@gnu.org List" To: Andreas =?utf-8?Q?R=C3=B6hler?= Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 06 11:09:22 2013 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 1UkWC7-000525-CQ for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Jun 2013 11:09:19 +0200 Original-Received: from localhost ([::1]:53568 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkWC6-0001UJ-O7 for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Jun 2013 05:09:18 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51078) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkWBq-0001Ty-9g for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 05:09:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkWBp-0008Fy-5L for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 05:09:02 -0400 Original-Received: from mail-pa0-x22c.google.com ([2607:f8b0:400e:c03::22c]:46728) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkWBo-0008Fo-RA for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 05:09:01 -0400 Original-Received: by mail-pa0-f44.google.com with SMTP id wp1so1598752pac.31 for ; Thu, 06 Jun 2013 02:09:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; bh=tm9E3TVDEJVqDXrUsoDR33Upb2cF0lOrJPaHvLOT0V4=; b=JbYvY9fSngpeVwKTUPF70Lk1FGAT5Vp2ygH///gymEwHEQa+vB6pdriMmZoWaq9/g9 67cw/NGcNdedAd3MeewVTTxZKsGPKGp/lnOYkz5EyW48UhRTBP6xZj5NfyGydqsF6mOu MFhZt85mrZeSVaw4hqMzNdXeHgui3RUADvRTvbov/oh8oDcJQQwhbi3ToLwY+LMvjh9f zRU3rWT8lJAXoGlrVgWv5hfR0FRxNI+Nx0a7h/kX50UK5sdBBQagA3KGAPZOp6RC2wv0 /9AsTvMLGx0sn5jox5A0FuRoP/EG7HaiSXA/t9Be5YFGOjkKeEAhSnYKPAIW3SaR3Yx9 +0pA== X-Received: by 10.68.129.197 with SMTP id ny5mr36613553pbb.180.1370509739876; Thu, 06 Jun 2013 02:08:59 -0700 (PDT) Original-Received: from debian-6.05 ([115.242.187.252]) by mx.google.com with ESMTPSA id cp1sm71972795pbc.42.2013.06.06.02.08.56 for (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Thu, 06 Jun 2013 02:08:59 -0700 (PDT) In-Reply-To: <51B04556.5090608@easy-emacs.de> ("Andreas \=\?utf-8\?Q\?R\=C3\=B6h\?\= \=\?utf-8\?Q\?ler\=22's\?\= message of "Thu, 06 Jun 2013 10:16:22 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::22c 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:91345 Archived-At: Andreas R=C3=B6hler writes: > Hi, > > I'm looking for a command, which would replace character at point by its = successor in alphabet. > > I.e. make B from A, C from B etc. > > Pretty sure it exists somewhere. C-M-% . RET \,(char-to-string (1+ (string-to-char \&))) RET See last few paragraphs of (info "(emacs) Regexp Replace") > > TIA, > > Andreas