From: Lute Kamstra Date: Fri, 4 Mar 2005 14:54:02 +0000 (+0000) Subject: (Instrumenting Macro Calls): Fix typo. X-Git-Tag: ttn-vms-21-2-B4~2008 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c79ef4bb7dffd2372b5dcea8c5f71cccd2fd661a;p=emacs.git (Instrumenting Macro Calls): Fix typo. --- diff --git a/lispref/edebug.texi b/lispref/edebug.texi index bcd7eba5b6f..835ddf91e94 100644 --- a/lispref/edebug.texi +++ b/lispref/edebug.texi @@ -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 @@ the @code{for} example macro (@pxref{Argument Evaluation}). (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