changeset 43527:d51d403fd80a

(save-match-data): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 25 Feb 2002 17:41:49 +0000
parents 72a6f9068758
children 788ea5463404
files lisp/subr.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Mon Feb 25 16:29:54 2002 +0000
+++ b/lisp/subr.el	Mon Feb 25 17:41:49 2002 +0000
@@ -1452,7 +1452,8 @@
 ;; We used to use an uninterned symbol; the compiler handles that properly
 ;; now, but it generates slower code.
 (defmacro save-match-data (&rest body)
-  "Execute the BODY forms, restoring the global value of the match data."
+  "Execute the BODY forms, restoring the global value of the match data.
+The value returned is the value of the last form in BODY."
   ;; It is better not to use backquote here,
   ;; because that makes a bootstrapping problem
   ;; if you need to recompile all the Lisp files using interpreted code.