emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [BUG]: function looking-back (XEmacs incompatibility)


From: Richard KLINDA
Subject: [Orgmode] [BUG]: function looking-back (XEmacs incompatibility)
Date: Wed, 02 Dec 2009 01:37:35 +0100
User-agent: Gnus/5.110003 (No Gnus v0.3) XEmacs/21.4 (Instant Classic, linux)

XEmacs and older Emacs (22 and below) don't have the function LOOKING-BACK.

I've found a definiton of it here: http://moinmo.in/EmacsForMoinMoin

,----
| (or (fboundp 'looking-back)
| ; taken straight out of 
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/subr.el?rev=1.530&view=auto
|     (defun looking-back (regexp &optional limit greedy)
|       "Return non-nil if text before point matches regular expression REGEXP.
| Like `looking-at' except matches before point, and is slower.
| LIMIT if non-nil speeds up the search by specifying a minimum
| starting position, to avoid checking matches that would start
| before LIMIT.
| If GREEDY is non-nil, extend the match backwards as far as possible,
| stopping when a single additional previous character cannot be part
| of a match for REGEXP."
|       (let ((start (point))
|             (pos
|              (save-excursion
|                (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") 
limit t)
|                     (point)))))
|         (if (and greedy pos)
|             (save-restriction
|               (narrow-to-region (point-min) start)
|               (while (and (> pos (point-min))
|                           (save-excursion
|                             (goto-char pos)
|                             (backward-char 1)
|                             (looking-at (concat "\\(?:"  regexp "\\)\\'"))))
|                 (setq pos (1- pos)))
|               (save-excursion
|                 (goto-char pos)
|                 (looking-at (concat "\\(?:"  regexp "\\)\\'")))))
|         (not (null pos)))))
`----

-- 
Richard




reply via email to

[Prev in Thread] Current Thread [Next in Thread]