diff options
| author | Luc Teirlinck | 2003-10-23 20:47:07 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-10-23 20:47:07 +0000 |
| commit | 0c6b7a1fa3c4c42f8d9a77a01d58380c2394cd44 (patch) | |
| tree | c6f1526764edf3e87fc5db227cef9851b736f04f | |
| parent | d7cd58d7dcbd3a5dc975d7cf713e5925638f32a1 (diff) | |
| download | emacs-0c6b7a1fa3c4c42f8d9a77a01d58380c2394cd44.tar.gz emacs-0c6b7a1fa3c4c42f8d9a77a01d58380c2394cd44.zip | |
(Function Safety): Use inforef instead of pxref for SES.
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/functions.texi | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 5c2f7398aca..fa271dcf506 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2003-10-23 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * display.texi (Temporary Displays): Add xref to `Documentation | ||
| 4 | Tips'. | ||
| 5 | |||
| 6 | * functions.texi (Function Safety): Use inforef instead of pxref | ||
| 7 | for SES. | ||
| 8 | |||
| 1 | 2003-10-23 Andreas Schwab <schwab@suse.de> | 9 | 2003-10-23 Andreas Schwab <schwab@suse.de> |
| 2 | 10 | ||
| 3 | * Makefile.in (TEX, texinputdir): Don't define. | 11 | * Makefile.in (TEX, texinputdir): Don't define. |
diff --git a/lispref/functions.texi b/lispref/functions.texi index 14279d4dab2..4ee101ca871 100644 --- a/lispref/functions.texi +++ b/lispref/functions.texi | |||
| @@ -1187,12 +1187,12 @@ following the definition, just like macros. | |||
| 1187 | @cindex function safety | 1187 | @cindex function safety |
| 1188 | @cindex safety of functions | 1188 | @cindex safety of functions |
| 1189 | 1189 | ||
| 1190 | Some major modes such as SES (@pxref{Top,,,ses}) call functions that | 1190 | Some major modes such as SES call functions that are stored in user |
| 1191 | are stored in user files. User files sometimes have poor | 1191 | files. (@inforef{Top, ,ses}, for more information on SES.) User |
| 1192 | pedigrees---you can get a spreadsheet from someone you've just met, or | 1192 | files sometimes have poor pedigrees---you can get a spreadsheet from |
| 1193 | you can get one through email from someone you've never met. So it is | 1193 | someone you've just met, or you can get one through email from someone |
| 1194 | risky to call a function whose source code is stored in a user file | 1194 | you've never met. So it is risky to call a function whose source code |
| 1195 | until you have determined that it is safe. | 1195 | is stored in a user file until you have determined that it is safe. |
| 1196 | 1196 | ||
| 1197 | @defun unsafep form &optional unsafep-vars | 1197 | @defun unsafep form &optional unsafep-vars |
| 1198 | Returns @code{nil} if @var{form} is a @dfn{safe} Lisp expression, or | 1198 | Returns @code{nil} if @var{form} is a @dfn{safe} Lisp expression, or |