comparison lispref/control.texi @ 56215:c9aa4127a482

Reposition @anchor's.
author Luc Teirlinck <teirllm@auburn.edu>
date Wed, 23 Jun 2004 16:40:04 +0000
parents 28b887271e09
children 45e78cd94f23 59dcbfe97385
comparison
equal deleted inserted replaced
56214:169058aadeda 56215:c9aa4127a482
1 @c -*-texinfo-*- 1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual. 2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2003
4 @c Free Software Foundation, Inc. 4 @c Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions. 5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/control 6 @setfilename ../info/control
7 @node Control Structures, Variables, Evaluation, Top 7 @node Control Structures, Variables, Evaluation, Top
8 @chapter Control Structures 8 @chapter Control Structures
782 verbatim, don't just write @code{(error @var{string})}. If @var{string} 782 verbatim, don't just write @code{(error @var{string})}. If @var{string}
783 contains @samp{%}, it will be interpreted as a format specifier, with 783 contains @samp{%}, it will be interpreted as a format specifier, with
784 undesirable results. Instead, use @code{(error "%s" @var{string})}. 784 undesirable results. Instead, use @code{(error "%s" @var{string})}.
785 @end defun 785 @end defun
786 786
787 @defun signal error-symbol data
787 @anchor{Definition of signal} 788 @anchor{Definition of signal}
788 @defun signal error-symbol data
789 This function signals an error named by @var{error-symbol}. The 789 This function signals an error named by @var{error-symbol}. The
790 argument @var{data} is a list of additional Lisp objects relevant to the 790 argument @var{data} is a list of additional Lisp objects relevant to the
791 circumstances of the error. 791 circumstances of the error.
792 792
793 The argument @var{error-symbol} must be an @dfn{error symbol}---a symbol 793 The argument @var{error-symbol} must be an @dfn{error symbol}---a symbol