diff options
| author | Karl Heuer | 1994-11-11 01:31:52 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-11-11 01:31:52 +0000 |
| commit | aabf6bec4847db52714c601fc7063b13c3bd8590 (patch) | |
| tree | 5edbbb97f81504a6f7997fa7e002e0f149d429ec /src | |
| parent | 08b1edf49fab9fb775aa0a64860c6e029ceaeca7 (diff) | |
| download | emacs-aabf6bec4847db52714c601fc7063b13c3bd8590.tar.gz emacs-aabf6bec4847db52714c601fc7063b13c3bd8590.zip | |
Fix typo in previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index 9414f3df2ec..56c9ad2f7ad 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -464,8 +464,8 @@ DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, "T if SYMBOL's value is not void.") | |||
| 464 | 464 | ||
| 465 | valcontents = XSYMBOL (sym)->value; | 465 | valcontents = XSYMBOL (sym)->value; |
| 466 | 466 | ||
| 467 | if (LISP_BUFFER_LOCAL_VALUEP (valcontents) | 467 | if (BUFFER_LOCAL_VALUEP (valcontents) |
| 468 | || LISP_SOME_BUFFER_LOCAL_VALUEP (valcontents)) | 468 | || SOME_BUFFER_LOCAL_VALUEP (valcontents)) |
| 469 | valcontents = swap_in_symval_forwarding (sym, valcontents); | 469 | valcontents = swap_in_symval_forwarding (sym, valcontents); |
| 470 | 470 | ||
| 471 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); | 471 | return (EQ (valcontents, Qunbound) ? Qnil : Qt); |
| @@ -758,8 +758,8 @@ find_symbol_value (sym) | |||
| 758 | CHECK_SYMBOL (sym, 0); | 758 | CHECK_SYMBOL (sym, 0); |
| 759 | valcontents = XSYMBOL (sym)->value; | 759 | valcontents = XSYMBOL (sym)->value; |
| 760 | 760 | ||
| 761 | if (LISP_BUFFER_LOCAL_VALUEP (valcontents) | 761 | if (BUFFER_LOCAL_VALUEP (valcontents) |
| 762 | || LISP_SOME_BUFFER_LOCAL_VALUEP (valcontents)) | 762 | || SOME_BUFFER_LOCAL_VALUEP (valcontents)) |
| 763 | valcontents = swap_in_symval_forwarding (sym, valcontents); | 763 | valcontents = swap_in_symval_forwarding (sym, valcontents); |
| 764 | 764 | ||
| 765 | if (MISCP (valcontents)) | 765 | if (MISCP (valcontents)) |