# HG changeset patch # User Lute Kamstra # Date 1109948042 0 # Node ID 4f506e54cd571e61ff6d5627cecd63686ce725b1 # Parent 335c04088898385997380c6b48ed8e817fa29462 (Instrumenting Macro Calls): Fix typo. diff -r 335c04088898 -r 4f506e54cd57 lispref/edebug.texi --- a/lispref/edebug.texi Fri Mar 04 14:53:15 2005 +0000 +++ b/lispref/edebug.texi Fri Mar 04 14:54:02 2005 +0000 @@ -1,6 +1,6 @@ @comment -*-texinfo-*- @c This is part of the GNU Emacs Lisp Reference Manual. -@c Copyright (C) 1992, 1993, 1994, 1998, 1999 Free Software Foundation, Inc. +@c Copyright (C) 1992, 1993, 1994, 1998, 1999, 2005 Free Software Foundation, Inc. @c See the file elisp.texi for copying conditions. @c This file can also be used by an independent Edebug User @@ -1082,7 +1082,7 @@ (defmacro for (var from init to final do &rest body) "Execute a simple \"for\" loop. For example, (for i from 1 to 10 do (print i))." - (declare (edebug symbolp "from" form "to" form "do" &rest form)) + (declare (debug symbolp "from" form "to" form "do" &rest form)) ...) @end example