diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index b48fbd5fa2b..856ec8f4a48 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Evaluator for GNU Emacs Lisp interpreter. | 1 | /* Evaluator for GNU Emacs Lisp interpreter. |
| 2 | Copyright (C) 1985, 86, 87, 93, 94, 95, 99, 2000, 2001 | 2 | Copyright (C) 1985, 86, 87, 93, 94, 95, 99, 2000, 2001, 2002 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -783,7 +783,8 @@ usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */) | |||
| 783 | /* Simple (defvar <var>) should not count as a definition at all. | 783 | /* Simple (defvar <var>) should not count as a definition at all. |
| 784 | It could get in the way of other definitions, and unloading this | 784 | It could get in the way of other definitions, and unloading this |
| 785 | package could try to make the variable unbound. */ | 785 | package could try to make the variable unbound. */ |
| 786 | 786 | ; | |
| 787 | |||
| 787 | return sym; | 788 | return sym; |
| 788 | } | 789 | } |
| 789 | 790 | ||