[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: regexp on emacs how to...
From: |
Nicolas Richard |
Subject: |
Re: regexp on emacs how to... |
Date: |
Tue, 02 Sep 2014 13:03:23 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 |
Le 02/09/2014 09:48, Renato Pontefice a écrit :
> wich coul be the elisp code, than check all the tags ([-.....-]), but,
> from the beginning ([-) to the end (-]) find some non capital letter
> (any one)
I did not give it much testing, but I think this should do it:
(while (and (not (eobp)) (search-forward "[-" nil t))
(skip-chars-forward "A-Z")
(unless (looking-at "-]")
(message "Problem found, please fix and hit C-M-c to continue")
(recursive-edit)))
(I think my previous mail was sent twice, sorry about that.)
--
Nicolas.
- Re: regexp on emacs how to..., Nicolas Richard, 2014/09/01
- Message not available
- Message not available
- Message not available
- Re: regexp on emacs how to...,
Nicolas Richard <=
Message not available
- Message not available
- Message not available
- Message not available
- Re: regexp on emacs how to..., renato . pontefice, 2014/09/03
- Re: regexp on emacs how to..., renato . pontefice, 2014/09/03
- Re: regexp on emacs how to..., Nicolas Richard, 2014/09/03
- Message not available
- Re: regexp on emacs how to..., Renato Pontefice, 2014/09/04
- Re: regexp on emacs how to..., Nicolas Richard, 2014/09/05
- Message not available
- Re: regexp on emacs how to..., Renato Pontefice, 2014/09/10
- Re: regexp on emacs how to..., Nicolas Richard, 2014/09/10
- Message not available
- Re: regexp on emacs how to..., Renato Pontefice, 2014/09/10
- Re: regexp on emacs how to..., Nicolas Richard, 2014/09/10
- Message not available
- Re: regexp on emacs how to..., Renato Pontefice, 2014/09/11