1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

Fix last change.

This commit is contained in:
Andreas Schwab 2002-08-24 18:36:27 +00:00
parent a96735b8af
commit addf35fd86
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-08-24 Andreas Schwab <schwab@suse.de>
* eval.c (Fdefvar): Fix last change.
2002-08-23 Richard M. Stallman <rms@gnu.org>
* eval.c (Fdefvar, Fdefconst, Fdefvaralias):

View File

@ -1,5 +1,5 @@
/* Evaluator for GNU Emacs Lisp interpreter.
Copyright (C) 1985, 86, 87, 93, 94, 95, 99, 2000, 2001
Copyright (C) 1985, 86, 87, 93, 94, 95, 99, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -783,7 +783,8 @@ usage: (defvar SYMBOL &optional INITVALUE DOCSTRING) */)
/* Simple (defvar <var>) should not count as a definition at all.
It could get in the way of other definitions, and unloading this
package could try to make the variable unbound. */
;
return sym;
}