From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Renato Pontefice Newsgroups: gmane.emacs.help Subject: how to find " on string Date: Tue, 16 Sep 2014 03:57:15 -0700 (PDT) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1410865233 14716 80.91.229.3 (16 Sep 2014 11:00:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Sep 2014 11:00:33 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Sep 16 13:00:27 2014 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 1XTqUj-0001ct-Q8 for geh-help-gnu-emacs@m.gmane.org; Tue, 16 Sep 2014 13:00:25 +0200 Original-Received: from localhost ([::1]:37117 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTqUh-0008MH-9d for geh-help-gnu-emacs@m.gmane.org; Tue, 16 Sep 2014 07:00:23 -0400 X-Received: by 10.52.167.129 with SMTP id zo1mr761633vdb.2.1410865035778; Tue, 16 Sep 2014 03:57:15 -0700 (PDT) X-Received: by 10.140.85.17 with SMTP id m17mr24921qgd.20.1410865035676; Tue, 16 Sep 2014 03:57:15 -0700 (PDT) Original-Path: usenet.stanford.edu!m5no1459571qaj.0!news-out.google.com!q8ni9qal.1!nntp.google.com!s7no1178086qap.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2.118.42.225; posting-account=u2YPPQoAAAD4EIiLgz2UEPmFMncWw22R Original-NNTP-Posting-Host: 2.118.42.225 User-Agent: G2/1.0 Injection-Date: Tue, 16 Sep 2014 10:57:15 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:207673 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:99946 Archived-At: ok, with this elisp, (defun my-working-code () "Some really useful thing." (interactive) (while (and (not (eobp)) (search-forward "[-" nil 'move)) (skip-chars-forward "A-Z") (unless (looking-at "-]") (message "Problem found, please fix and hit C-M-c to continue") (recursive-edit)))) I can find for all I need to search. I look for many char that I'm looking for. I've added some char ( (skip-chars-forward "A-Z_\\(0-9\)")) I would also look for ", but I can't find the char that indicate that. Wich one is it? TIA Renato