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

[xyzzy:07959] Re: save-match-data ?



山根さん、こんにちは。

	2002年1月4日(金)[16:24:40]の、
	[xyzzy:07955] save-match-data ?
	への返事です。

|  Macro: save-match-data body... 
|         This macro executes body, saving and restoring the match data
|         around it.

たぶんこんな感じで。

(defmacro save-match-data (&body body)
  (let ((#1=#:data (match-data)))
    (unwind-protect
	(progn ,@body)
      (store-match-data #1#))))

-- 
亀井哲弥(KAMEI Tetsuya)
kamei@xxxxxxxxxxxx

Index Home