unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Vinicius Jose Latorre <viniciusjl@ig.com.br>
Cc: GNU Emacs <emacs-devel@gnu.org>
Subject: Re: Possible problem with looking-back function
Date: Fri, 20 Aug 2010 15:07:21 +0200	[thread overview]
Message-ID: <jwvoccxv3kj.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <4C6DE451.5080706@ig.com.br> (Vinicius Jose Latorre's message of "Thu, 19 Aug 2010 23:11:29 -0300")

> Ok, so looking-back should be replaced by:

>    (progn
>      (goto-char 11)                     ; go to end of buffer
>      ;; ---- looking-back replacement --- BEGIN
>      (save-excursion
>        (when (/= 0 (skip-chars-backward " \t\n" 1))
>          (unless (bolp)
>            (forward-line 1))
>          (looking-at "^\\([ \t\n]+\\)")))
>      ;; ---- looking-back replacement --- END
>      (match-beginning 1))

> Now it returns 1.

Or you can still use a regexp, with something like

  (defun other-looking-back (re limit)
    (save-restriction
      (narrow-to-region (point-min) (point))
      (goto-char limit)
      (re-search-forward (concat "\\(?:" re "\\)\\'") nil t)))

Note that it imposes a few different constraints on the regexp, mostly
it can't use things like \> or \< or \b at the end because
narrow-to-region will prevent it from peeking at the next char.


        Stefan



  reply	other threads:[~2010-08-20 13:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-19  1:15 Possible problem with looking-back function Vinicius Jose Latorre
2010-08-19  2:43 ` Davis Herring
2010-08-19  6:09   ` Andreas Röhler
2010-08-19  8:01     ` Stefan Monnier
2010-08-19  9:02     ` Stephen J. Turnbull
2010-08-19  9:32       ` Andreas Röhler
2010-08-20  2:11   ` Vinicius Jose Latorre
2010-08-20 13:07     ` Stefan Monnier [this message]
2010-08-21  0:08       ` Vinicius Jose Latorre

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvoccxv3kj.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@gnu.org \
    --cc=viniciusjl@ig.com.br \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).