diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index acde450299c..5ab689f1925 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | /* Execution of byte code produced by bytecomp.el. | 1 | /* Execution of byte code produced by bytecomp.el. |
| 2 | Copyright (C) 1985, 1986, 1987, 1988 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| 6 | GNU Emacs is free software; you can redistribute it and/or modify | 6 | GNU Emacs is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 1, or (at your option) | 8 | the Free Software Foundation; either version 2, or (at your option) |
| 9 | any later version. | 9 | any later version. |
| 10 | 10 | ||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | 11 | GNU Emacs is distributed in the hope that it will be useful, |
| @@ -1077,8 +1077,7 @@ If the third argument is incorrect, Emacs may crash.") | |||
| 1077 | break; | 1077 | break; |
| 1078 | 1078 | ||
| 1079 | case Bnumberp: | 1079 | case Bnumberp: |
| 1080 | TOP = (XTYPE (TOP) == Lisp_Int || XTYPE (TOP) == Lisp_Float | 1080 | TOP = (NUMBERP (TOP) ? Qt : Qnil); |
| 1081 | ? Qt : Qnil); | ||
| 1082 | break; | 1081 | break; |
| 1083 | 1082 | ||
| 1084 | case Bintegerp: | 1083 | case Bintegerp: |