diff options
| author | Gerd Moellmann | 2001-10-31 10:58:35 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-31 10:58:35 +0000 |
| commit | b9d9a9b9fef090d0fc79781df5e42d58fd2e5bfa (patch) | |
| tree | 44f5671c7a1eeb078137e26076052b4fd7eca2a2 | |
| parent | fa1361cbef4097890d1d1d015866876b0f567572 (diff) | |
| download | emacs-b9d9a9b9fef090d0fc79781df5e42d58fd2e5bfa.tar.gz emacs-b9d9a9b9fef090d0fc79781df5e42d58fd2e5bfa.zip | |
(require_unwind): Return Lisp_Object.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 04042fab40b..98c2e0d87c5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-31 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (require_unwind): Return Lisp_Object. | ||
| 4 | |||
| 1 | 2001-10-31 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2001-10-31 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix. | 7 | * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix. |
| @@ -3082,10 +3082,11 @@ particular subfeatures supported in this version of FEATURE. */) | |||
| 3082 | 3082 | ||
| 3083 | Lisp_Object require_nesting_list; | 3083 | Lisp_Object require_nesting_list; |
| 3084 | 3084 | ||
| 3085 | Lisp_Object | ||
| 3085 | require_unwind (old_value) | 3086 | require_unwind (old_value) |
| 3086 | Lisp_Object old_value; | 3087 | Lisp_Object old_value; |
| 3087 | { | 3088 | { |
| 3088 | require_nesting_list = old_value; | 3089 | return require_nesting_list = old_value; |
| 3089 | } | 3090 | } |
| 3090 | 3091 | ||
| 3091 | DEFUN ("require", Frequire, Srequire, 1, 3, 0, | 3092 | DEFUN ("require", Frequire, Srequire, 1, 3, 0, |