diff options
| author | Paul Eggert | 2011-03-16 00:48:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-16 00:48:36 -0700 |
| commit | 2a80c887c75a89f23efcb0c565454647e4f96570 (patch) | |
| tree | 61cf6d5c690fe2f64851705d7af442bdf656835c /src | |
| parent | a885e2ed791b15dc48a7024751872d2b5bc17034 (diff) | |
| download | emacs-2a80c887c75a89f23efcb0c565454647e4f96570.tar.gz emacs-2a80c887c75a89f23efcb0c565454647e4f96570.zip | |
* fns.c (require_nesting_list, require_unwind): Now static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/fns.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 131d2af5a49..0e8e33ee53a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-03-16 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-16 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * fns.c (require_nesting_list, require_unwind): Now static. | ||
| 4 | |||
| 3 | * floatfns.c (domain_error2): Define only if needed. | 5 | * floatfns.c (domain_error2): Define only if needed. |
| 4 | (Ffrexp, Fldexp): Rename locals to avoid shadowing. | 6 | (Ffrexp, Fldexp): Rename locals to avoid shadowing. |
| 5 | 7 | ||
| @@ -2598,9 +2598,9 @@ particular subfeatures supported in this version of FEATURE. */) | |||
| 2598 | 2598 | ||
| 2599 | /* List of features currently being require'd, innermost first. */ | 2599 | /* List of features currently being require'd, innermost first. */ |
| 2600 | 2600 | ||
| 2601 | Lisp_Object require_nesting_list; | 2601 | static Lisp_Object require_nesting_list; |
| 2602 | 2602 | ||
| 2603 | Lisp_Object | 2603 | static Lisp_Object |
| 2604 | require_unwind (Lisp_Object old_value) | 2604 | require_unwind (Lisp_Object old_value) |
| 2605 | { | 2605 | { |
| 2606 | return require_nesting_list = old_value; | 2606 | return require_nesting_list = old_value; |